Reputation: 1
Is there any way to compile programs remotely on Linux with Putty and Sublime? I'm running windows and my c++ compiler is different but my programs are graded on how they run when compiled on the server.
Upvotes: 0
Views: 212
Reputation: 1017
This may be a long way of doing it, but this is always what I have done when faced with this problem. (This is assuming that your code is saved on your windows machine and you want to compile it on your linux machine)
In the shell, use the touch command to create a new file
$ touch newFile.cpp
Then use nano to open the file and copy and paste your code into the shell.
$ nano newFile.cpp
then just use the command to compile and then execute. There's probably a faster way to do but it works.
Upvotes: 0
Reputation: 50190
I use winscp to copy files to a unix box to compile / run if I am editing on windows. or you could use pscp (part of putty but not graphical)
https://winscp.net/eng/download.php
Upvotes: 1