I have a linux csh code. I need to run part of the code in another virtual machine. How can I do that?
My code has following steps
- echo $PWD
- rsh
- mkdir NEW
- cd NEW
- echo $PWD
- Logout from new machine
- cd <previous location
- echo $PWD
Step 3-6 should be executed in new machine.
You can't do it like that w/
rsh.I haven't used
rshin decades, and none of the machines I have access to have the client or the server installed, so I can't say whether this will work or not for sure.