...
Expand | ||
---|---|---|
| ||
Code Block | ||
---|---|---|
| ||
cd # make sure you're in your Home directory
pwd # where am I now, really? /stor/home/student01
cd .. # up one level - now I'm in /stor/home
cd ../work/CBRS_unix/ # change into /stor/work/CBRS_unix using relative syntax
cd ./unix/docs/ # change into the unix/docs sub-directory relative to /stor/work/CBRS_unix
cd ../../fastq/ # go up two levels, then into fastq directory
cd ../../../home/ # change to the /stor/home directory using relative syntax
cd # go Home |
...
- asterisk ( * ) is the most common filename wildcard. It matches any length of any characters.
- brackets ( [ ] ) match any character between the brackets.
- and you can use a hyphen ( - ) to specify a range of characters (e.g. [A-G])
- braces ( { } ) enclose a list of comma-separated strings to match (e.g. {dog,pony})
...