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


This topic: Lab > WebHome > ComputationList > ProtocolsUnixCommandsQuickReference
Topic revision: r2 - 2014-05-30 - JeffreyBarrick