Unix Commands Quick Reference

Useful commands and flags that we get tired of looking up...

Disk Space

The du command is verbose and confusing if you run it without options. Here is how to get a human-readable output and a grand total for the path argument (omit for current directory).

du -hc

Fixing Line Endings

If you get odd errors after transferring a text file from a PC or Mac to a Unix machine, it's likely that you have a problem with newline characters. This is especially common when editing files in Excel and saving them to tab-delimited or comma-delimited files for input into. You can generally avoid this problem and fix the line endings by using an industrial strength text editor. This command converts Mac line endings in a saved Excel file to Unix line endings.

tr "\r" "\n" < input.tab >.converted.tab

Merging commands to be serial on TACC

Sometimes you have 96 short jobs that you want to run serially 8 at a time on 12 cores rather than requesting 96 cores. This command will combine every 8 lines in a file into one line separated by && so that these commands are now run on one core.

paste -s -d'#######\n' commands | sed "s/#/ \&\& /g" > commands8

Adding your path to the command prompt

Add to your .bashrc or similar bash startup script:

export PS1='\w\$ '

Useful Bash Commands

These commands are also compatible with the Terminal (Mac OS X) as well as the Windows Bash emulator called Cmder.

cat yourfile.txt
Prints the contents of the given file to the console.

cd put/target/directory/here
Changes the working directory to whatever path is typed after cd. Without an additional argument, cd brings one back to the home directory.

fgrep "words" yourfile.txt
Print only lines in a file containing the given "words" in a particular file.

find word*
Locates and gives file names of all files in the working directory containing word in the beginning of the file name. The * represents a wildcard so it can be placed before, after, or both in order to find files that contain the given query in a particular part of the file name.

kill process
Ends a particular process. Note that you can type killall to end multiple processes that match the name that is input.

ls
Lists the contents of the working directory.

mkdir directoryname
Makes a directory with a name specified by the user.

nl yourfile.txt
Numbers all the lines of a file.

ps
Lists all process currently running.

pwd
Prints the working directory path to the console.

rm yourfile.txt
Deletes a given file.

rmdir yourdirectory
Deletes a given directory.

source yourfile
Reads and executes commands from the given file in the current environment.

which yourprogram
Prints the the full path of the program to the console (note that its directory must be in your PATH). Adding an -a after which prints all instances of the program.

Adding Directories to the PATH Variable

When you invoke commands such as python3 via Bash, it searches all file directories listed in your PATH in order to execute that command. Errors such as "command not found" (Linux) or "not recognized as an internal or external command, operable program or batch file" (Windows) when you try to invoke something mean you need to add the directory containing that program to your PATH.

echo %path% shows everything in your PATH on Windows while echo $PATH does the same for Linux/Unix systems.

PATH=$PATH:~/your/directory/here and PATH=~/your/directory/here:$PATH add the given directory to the end or the beginning of your PATH variable list, since when you invoke a command, the directories will be searched from beginning to end and the first match will be what is invoked. This is for Linux/Unix.

The Windows equivalent on Cmder is PATH=%PATH%;C:\your\directory\here.

Edit | Attach | Watch | Print version | History: r6 < r5 < r4 < r3 < r2 | Backlinks | Raw View | More topic actions

 Barrick Lab  >  ComputationList  >  ProtocolsUnixCommandsQuickReference

Contributors to this topic Edit topic JeffreyBarrick, LucyLeblanc
Topic revision: r6 - 2020-02-14 - 03:19:21 - Main.JeffreyBarrick
 
This site is powered by the TWiki collaboration platform Powered by Perl This site is powered by the TWiki collaboration platformCopyright ©2024 Barrick Lab contributing authors. Ideas, requests, problems? Send feedback