Unix Basics
|
Unix is the single most powerful tool in a bioinformaticians toolbox.
Use pwd, ls, cd, cp, mv, mkdir, rm, man, cat/zcat, echo to list, move, copy, and view files and directories
Use > to redirect stadard output to a file
Use | to redirect standard output to another program
Use <command>& to run a program in a background
Use jobs to see jobs you are running in a shell
Use $() include an output from a program in a string
|