Differences between revisions 2 and 3
Revision 2 as of 2007-09-19 17:06:58
Size: 762
Editor: GreyCat
Comment:
Revision 3 as of 2008-11-22 14:09:51
Size: 762
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[Anchor(faq80)]] <<Anchor(faq80)>>

How can I make an alias that takes an argument?

You can't. Aliases in bash are extremely rudimentary, and not really suitable to any serious purpose. The bash man page even says so explicitly:

  • There is no mechanism for using arguments in the replacement text. If arguments are needed, a shell function should be used (see FUNCTIONS below).

Use a function instead. For example,

settitle() { case $TERM in *xterm*|*rxvt*) echo -en "\e]2;$1\a";; esac; }

Oh, by the way: aliases are not allowed in scripts. They're only allowed in interactive shells, and that's simply because users would cry too loudly if they were removed altogether. If you're writing a script, always use a function instead.

BashFAQ/080 (last edited 2020-04-30 07:20:44 by c-73-202-78-216)