Book HomeLearning UnixSearch this book

8.2. Shell Aliases and Functions

If you type command names that are hard for you to remember, or command lines that seem too long, you'll want to learn about shell aliases and shell functions. These shell features let you abbreviate commands, command lines, and long series of commands. In most cases, you can replace them with a single word or a word and a few arguments. For example, one of the long pipelines Section 5.2 (Chapter 5) could be replaced by an alias or function named (for instance) "aug." When you type aug at a shell prompt, the shell would list files modified in August, sorted by size.

Making an alias or function is almost as simple as typing in the command line or lines that you want to run. References in Section 8.1, earlier in this chapter, have more information. Shell aliases and functions are actually a simple case of shell programming.



Library Navigation Links

Copyright © 2003 O'Reilly & Associates. All rights reserved.