Differences between revisions 4 and 5
Revision 4 as of 2008-11-22 23:25:45
Size: 760
Editor: GreyCat
Comment: first-line
Revision 5 as of 2016-09-25 19:52:37
Size: 757
Editor: 46
Comment: change echo to printf, remove useless { }
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:
settitle() { case $TERM in *xterm*|*rxvt*) echo -en "\e]2;$1\a";; esac; } settitle() case $TERM in *xterm*|*rxvt*) printf '\e]2;%s\a' "$1"; esac

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*) printf '\e]2;%s\a' "$1"; 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)