| mv file1 file2 |
moves (or renames) file1 to file2
|
| rm file1 file2 file3 ... |
removes (or deletes) files named file1 file2 file3 ... |
| cat file |
displays the contents of file on the screen all at once. |
| emacs file1 & |
starts emacs editor to edit file1 |
| cp file1 file2 |
makes a copy of file1 in the current working directory and names it file2
| cp file1 your_directory |
makes a copy of file1 in your_directory |
cp file1 your_directory/file2 |
makes a copy of file1 in your_directory
and names it file2 |
|
| more file |
displays the contents of file on the screen one page at a time.
- press space-bar to see the next page
- press q to quit reading
- press return to see the next line
|
| lpr -Pcs4204 file1 file2 ..... |
prints files to EE/CS 4-204 printers
- Note that you should buy printer cards from the operators
at EE/CS 4-204 -
they are $1 or $4, checks only, no cash or credit cards!
- To print 2 pages in one page do enscript -2Gr -Pcs4204
your_file
OR
mpage -Pcs4204 -2 your_file
- To print 4 pages in one page do mpage -Pcs4204 -4
your_file
|