How to pass all parameters to different bash script?
In other words, how to get all parameters passed to current script and optionally forward to other one.
Bash has special variable containing those
parameters: $@
Example of using $@
#!/bin/bash
./my-script $@