alias fixdll "mv \!* junk; cp junk \!*; chmod +x \!*"
What does this command do.I know some command is given a name fixdll, so that instead of typing the whole command can use this simple "fixdll".
But what is done inside the quotes?
|
Go4Expert Member
|
|
| 23Oct2009,19:16 | #1 |
|
alias fixdll "mv \!* junk; cp junk \!*; chmod +x \!*"
What does this command do.I know some command is given a name fixdll, so that instead of typing the whole command can use this simple "fixdll". But what is done inside the quotes? |
|
Team Leader
|
![]() |
| 27Oct2009,18:07 | #2 |
|
!* repeats all arguments of the last command
|