We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$9 may be used to represent arguments given with an alias.
Examples:
alias killem cast 'fireball' $1; cast 'harm' $2 killem fido mage
Would cast fireball on fido, followed by casting harm on mage. Variables may be used repeatedly and in any order:
alias helpem cast 'heal' $1; cast 'bless' $1; cast 'armor' $1
The special variable $* represents the entire input line after an alias:
alias tr tell rasmussen $* tr hi there, how are you today? You tell Rasmussen, 'hi there, how are you today?'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
$9 may be used to represent arguments given with
an alias.
Examples:
Would cast fireball on fido, followed by casting harm on mage. Variables
may be used repeatedly and in any order:
The special variable $* represents the entire input line after an alias:
The text was updated successfully, but these errors were encountered: