How to pass all parameters to different bash script?

bash shell

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 $@