Term
|
Definition
|
|
Term
|
Definition
my computer's network name |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
find what man page is appropriate |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
export/set a new environment variable |
|
|
Term
|
Definition
|
|
Term
|
Definition
DANGER! become super user root DANGER! |
|
|
Term
|
Definition
change permission modifiers |
|
|
Term
|
Definition
|
|
Term
|
Definition
The | takes the output from the command on the left, and "pipes" it to the command on the right.
$ cat ex12.txt ex13.txt | less |
|
|
Term
|
Definition
The < will take and send the input from the file on the right to the program on the left.
$ cat < ex13.txt $ less < ex12.txt $ less < ex12.txt | cat | less less < ex12.txt |
|
|
Term
|
Definition
The > takes the output of the command on the left, then writes it to the file on the right.
$ cat ex13.txt > ex15.txt |
|
|
Term
|
Definition
The >> takes the output of the command on the left, then appends it
to the file on the right. |
|
|
Term
|
Definition
matches anything in a wildcard
$ ls *.txt $ ls ex*.* |
|
|