I want to make an alias for the rbt
command. I thought it should be:
alias myrbt 'rbt \!:1 --server=myserver --repository-url=myurl \!:2- \!:$'
the expected result is when I run
myrbt diff 12345
it should run
rbt diff --server=myserver --repository-url=myurl 12345
when I run
myrbt post 1.py 2.py
it should run
rbt post --server=myserver --repository-url=myurl 1.py 2.py
...but it doesn't work.