Home Search Reference Manual Return
However by running gensys in a virtual machine under VirtualBox. The problem with different operating systems has now easily been overcome. Now gensys runs on all machines where VirtualBox is installed.
| Left button | Sets the contents of buffer PRIMARY SELECTION |
| Middle button | Paste the contents of buffer PRIMARY SELECTION |
| Right button | Pops up the background menu of the program (if the program has a background menu) |
| dos2ux | Translates from DOS to UNIX | |
| ux2dos | Translates from UNIX to DOS |
| ^ | The beginning of the line |
| $ | The end of the line |
| [xy] | Matches both x and y. |
| [a-z] | Matches all lower case letter. |
| [0-9] | Matches all numbers. |
| [^x] | Matches any character except x. |
| . | Any character. |
| * | Repeats the character in front of the *-sign, the character will be repeated zero or more times. |
| \ | Quote the next character. Example: if you are searching for a $-sign you must write \$ in the search expression. |
| Create: | tar -ckz -f archive.tgz <files and directories> |
| TOC: | tar -tkz -f archive.tgz |
| Extract: | tar -xkz -f 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. + |
| | | Pipe the output from a command to a second command | ps -ef | grep $USER |
| | cc | Pipe the output from a command to CLIPBOARD | ls | cc |
| echo `vc` | To see the contents of the CLIPBOARD in a terminal | |
| `vc` | Paste CLIPBOARD to terminal |
| 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_3 | Resize window |
| Double click Btn 1 | Rolls up and down the window |
| Btn 2 | Lower the window |