Skip to content

Commit

Permalink
Adds info about command options
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Kotikov committed Jan 8, 2015
1 parent 01849c3 commit dba00b9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/alias.bat
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ goto :eof

:p_help
echo.Usage:
echo. alias name=full command
echo. alias [/reload] [/d] [name=full command]
echo. /reload Reload the aliases file
echo. /d Delete an alias (must be followed by the alias name)
echo.
echo. If alias is called with any parameters, it will display the list of existing aliases.
echo. In the command, you can use the following notations:
echo. $* allows the alias to assume all the parameters of the supplied command.
echo. $1-$9 Allows you to seperate parameter by number, much like %%1 in batch.
echo. $T is the command seperator, allowing you to string several commands together into one alias.
Expand Down

0 comments on commit dba00b9

Please sign in to comment.