I was wondering if it is possible to modify bash such that when I type
command --arg1
what actually happens is
~/prerun.py command --arg1
(prerun.py would handle starting command --arg1 itself)
Thanks!
|
|
command () {
prerun.py some_command $@
}
Then when you run |
|||||||||
|