mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
If an alias's value ends with a space or tab, the next word is also checked for aliases. This is a POSIX feature. It is useful with utilities like command and nohup (alias them to themselves followed by a space).
6 lines
87 B
Text
6 lines
87 B
Text
# $FreeBSD$
|
|
|
|
alias command='command '
|
|
alias alias0=exit
|
|
eval 'command alias0 0'
|
|
exit 3
|