Unix solution:
To make it semi-dynamic and still easy to use in your terminal, you can add an alias to your .bashrc / .bash_profile which stores the included jars.
Adding alias javal="java -cp 1.jar:the-rest-of-your-jars.jar:2.jar:30.jar:" to your bash profile will make it possible to just execute javal MyApplication -param1 AA -param2 BB. When you want to add more jars, just update your .bashrc / .bash_profile. Of course you can use any commandname instead of javal.
Easy peasy explanation about aliasses here.
-edit- thanks @mschenk74