You only need to know a few UNIX commands to get started with
text-tagging.
|
COMMAND
|
PURPOSE
|
|
cd
|
returns you to home directory
|
|
cd directoryname
|
changes to directory directoryname
|
|
cd ..
|
go up one level in directory
|
|
cd -
|
goes to last directory
|
|
ls
|
lists files in a directory
|
|
ls | more
|
lists files sequentially (press ENTER to move down)
|
|
ls -al
|
lists file permissions, file size, date last modified, etc.
|
|
clear
|
clears the screen
|
|
cp filename /pathtodirectory/directoryname
|
copies the file filename to the directory directoryname
|
|
mv filename /pathtodirectory/directoryname
|
moves the file filename to the directory directoryname
|
|
rm filename
|
removes a file (permanently!)
|
|
*
|
wildcard symbol; use to perform an action on all files which start similarly; for example:
|
|
rm WhaC*
|
removes all files with names that start with "WhaC" — such as WhaCort.xml and WhaCort.tagfile
|
|
CTRL p
|
lists previous command(s)
|
|
CTRL c
|
stops command in process
|
|
pine
|
opens the UNIX email program
|
|
jove filename
|
opens the file filename in the jove editor
|
|
spell filename > junk
|
UNIX spell-checker; outputs suspected misspelled words into a file named junk
|
|
lpr -P etext_l1 filename
|
prints file from UNIX
|
|
grep "characters" filename > junk
|
pulls out all occurrences of characters from the file filename and outputs them into a file named junk
|
|
df /directory
|
lists free disk space in directory
|
|
flip -u filename
|
gets rid of the ^M characters in a file
|