I am trying to merge multiple linux commands in one line to perform deployment operation. For example
cd /my_folder rm *.jar svn co path to repo mvn compile
To run them all at once, you can use the pipe line key "|" like so:
$ cd /my_folder | rm *.jar | svn co path to repo | mvn compile package install