alias | copy | egrep/grep | finger | list |
make dir. | man | more/page | move | password |
phone | quota | remove | remove dir. | |
wildcards |
> alias vt2d='setenv DISPLAY vortexc2.egr.duke.edu:0.0'
There is a subtle difference when copying a single directory. If the target
directory already exists, the source directory will be put in it. If not, the
target will be created and the
> ls f?nwill list all directories with three letters, the first of which having to be an f and the third (and last) of which having to be an n. The second letter can be anything, so directories called fan, fun, and anything else will be listed. Directories name nofun or fawn will *not* be listed.
> ls f*nwill list all directories starting with f, ending with n, and having any characters in between. Directories named fan, fun, or fawn will be listted, but nofun will not. Try not to use two * in the same string