Save time (and keystrokes) in the terminal
Do you have a few long commands that you keep typing in the terminal? Things like ‘cd /some/long/path/that/takes/forever/to/type’ or ‘mycommand -with -lots -of -variables’? If so, here’s something you’ll enjoy. Just open up ~/.profile in your favorite editor, and add the following lines: alias foo="cd /some/long/path/that/takes/forever/to/type" …