bash: pass all args

For `./test.sh` it is often useful to pass all arguments. 


$ cat test.sh
python3 manage.py test ${@:1} --parallel --fail-fast

This is useful to configure a tool but keep the flexibility of its cli. Open problem: auto-complete

Comments