This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias dattach='docker attach' | |
| alias dbuild='docker build' | |
| alias dcommit='docker commit' | |
| alias dcp='docker cp' | |
| alias dcreate='docker create' | |
| alias ddiff='docker diff' | |
| alias devents='docker events' | |
| alias dexec='docker exec' | |
| alias dexport='docker export' | |
| alias dhistory='docker history' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # hadoop aliases | |
| alias h_stop="~/bin/h_stop" | |
| alias h_start="~/bin/h_start" | |
| alias hls="hadoop fs -ls" | |
| alias hlsr="hadoop fs -lsr" | |
| alias hdu="hadoop fs -du" | |
| alias hdf="hadoop fs -df" | |
| alias hdus="hadoop fs -dus" | |
| alias hcount="hadoop fs -count" |