| ^ | The beginning of the line |
| $ | The end of the line |
| \ | Quote the next character. Example: if you are searching for a $-sign you must write \$ in the search expression. |
| . | Any character |
| * | Repeats the character in front of the *-sign, the character will be repeated zero or more times. |
| [xy] | Matches both x and y. |
| [^x] | Matches any character except x. |
| Create: | tar cfz archive.tgz <files or directories> |
| TOC: | tar tfz archive.tgz |
| Extract: | tar xfz archive.tgz |
Other useful commands can be found under Scripts used in the GENSYS package.
| Sign | Explanation | Example |
| > | Send the output from a command to a file | ls > my_dir.txt |
| >> | Appends the output from a command to a file | ls -l >> my_dir.txt |
| < | Read input data from a file | cat < my_dir.txt |
| <<+ | Read input data direct after the +-sign until the next +-sign |
cat <<+ The brown fox jumped over the lazy dog. + |
| | | Send the output from a command to the next command | ps -ef | grep $USER |
| Name | Explanation |
| $HOME | Name of home directory |
| $PATH | The user's search path for commands |
| $PWD | Name of current directory |
| $USER | User name |
| Alt + Btn 1 | Move window |
| Alt + Btn 2 | Lower the window |
| Alt + Btn 3 | Resize window |