1 / 4

SEEM3460 Tutorial

SEEM3460 Tutorial. Tips on Using UNIX. Keyboard shortcuts. General Copy: Ctrl+Insert (not Ctrl+c ) Cut: Shift+Del (not Ctrl+x ) Paste: Shift+Insert (not Ctrl+v ) In shell Done: Ctrl+d (usually to finish input) Cancel: Ctrl+c (use this when it hangs). Directory.

dawn
Télécharger la présentation

SEEM3460 Tutorial

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SEEM3460 Tutorial Tips on Using UNIX

  2. Keyboard shortcuts General • Copy: Ctrl+Insert (not Ctrl+c) • Cut: Shift+Del (not Ctrl+x) • Paste: Shift+Insert (not Ctrl+v) In shell • Done: Ctrl+d (usually to finish input) • Cancel: Ctrl+c (use this when it hangs)

  3. Directory • “~” represents home directory. When used alone, it means your own one; when followed by a username, it means the home directory of that user • cd ~/ • cd ~oychung/ • ./ means the current directory • ../ means the parent directory of the current directory • / means the root directory • usually you need not type “/” except when you are using the root directory

  4. Execution • To run a process simultaneously, use “&”. Without doing so, the terminal will be locked until the process finish • gedithelloworld.c & • To use stdout from exe1 as stdin of exe2, use “|” • ls –l /bin | more • Use “<“ to redirect stdin and use “>” to redirect stdout. Use “>>” to redirect stdout and write in append mode • suppose 1.txt has content “123”,[cat < 1.txt > 1.txt] will get “123” only in 1.txt; [cat < 1.txt >> 1.txt] will get “123123” in 1.txt

More Related