alias
Create short-hand commands for longer or frequently used commands.
Note
Yantra Launcher aliases are retained even after restarting the launcher session, unlike the aliases in usual or conventional shells (1).
- In this context usual or conventional shells refer to shells like Bash, Zsh, CMD, Powershell, etc. Yantra is unusual in this regard because of its unique features for aliases, which is persistency.
Note
Pre-defined commands can not be aliased.
Syntax
To set an alias:
alias alias_name = alias_cmd
To get value of an alias:
alias alias_name
To list all aliases:
alias
To reset all aliases to default:
alias -1
Examples
Simple Command Alias
This will create an alias alias h = help
h
for the help
command.
Alias With Arguments
This will create an alias alias ps = search -playstore
ps
for the search -playstore
command. This will let you search the Play Store with the ps
command.
Example
ps Yantra Launcher
Alias for App Launch
This will create an alias alias cod = launch call of duty
cod
for the launch call of duty
command. This will let you launch Call of Duty with the cod
command.