is an encrypted version of Telnet, which provides a command line interface for a remote host (a computer far far away) Since Telnet uses plain text, anyone listening to your Internet connection can get your username and password
have two icons Yellow icon (SSH Secure File Transfer Client): to transfer files to UHUNIX account Gray icon (SSH Secure Shell Client): command line interface to access the UHUNIX operating system
the tab key will complete a file name To repeat a command, press the up and down arrow keys to scroll through a history of the commands, then press the enter key to execute the command
characters in the file names A ? (question mark) stands for any single character For example, ?.c means all files that end with .c with one character names
directory) Note: to save space, we will use only the % (percent sign) as the UNIX prompt in the slides from now on % pwd walbritt@uhx01:/home/27/walbritt/public_html/ic s212/examples
but it works a little differently from usual windows You can select something with your mouse and copy (but not cut) the selected text Then when you paste, the text is inserted where the cursor is, not where the mouse pointer or selection is
an "incremental search." For example, if you are looking for "hello", you type h and it looks for the first h. Then you type e and it looks for "he". Type Ctrl-s again, and it will look for the next occurrence of the word S Ctrl
of windows I recommend that you start by opening one window in which you run a program and another window for editing Edit a program in the edit window Then save it (use Ctrl-x Ctrl-s), and then compile it and run it in the other window
main directory called “.emacs” which you can use to customize your emacs For example, to enable the backspace key, disable tabs, and set the indention to 2 spaces, see detailed code at the bottom of the webpage “Emacs Commands” (see the link on the class webpage)
the terminal However, we can change where standard output is stored by using a command, followed by a greater- than-sign (>), and then a file name The output will be stored in the file! Syntax: command > file.txt