I want to implement this function, it will drop the first elem of the shell args $@, and pass the remain args to another function. If I pass 3 elems: "1 2", "2 3", "3 4" it will drop "1 2", and pass 2 elems: "2 3" and "3 4" to another function, that function will receive two params: "2 3" and "3 4".
I don't know how to do this, it seems once I convert it to string, I can never convert it back correctly?
Any suggestions?