Skip to content

Instantly share code, notes, and snippets.

@mxrch
Last active December 2, 2021 17:21
Show Gist options
  • Save mxrch/4d23fd49a3bb8d36255898ce5162d6e4 to your computer and use it in GitHub Desktop.
Save mxrch/4d23fd49a3bb8d36255898ce5162d6e4 to your computer and use it in GitHub Desktop.
Easy copy/paste on isolated Windows machines
import sys
from os.path import isfile
if len(sys.argv)<=1:
print("Please specify your source file.")
exit()
elif not isfile(sys.argv[1]):
print("{} not found.".format(sys.argv[1]))
exit()
file = sys.argv[1]
text = ""
with open(file, 'r') as f:
text = f.read()
print('\n'.join(["cmd /c echo {} >> script.ps1".format(line) if line else '' for line in text.split('\n')]))
@mxrch
Copy link
Author

mxrch commented Jul 25, 2020

Example

❯ python echoer.py script.py

Output :

cmd /c echo import os >> script.ps1
cmd /c echo import shutil >> script.ps1
cmd /c echo import datetime >> script.ps1

cmd /c echo for name in os.listdir("C:\Users\Administrator\Desktop"): >> script.ps1
cmd /c echo 	pathname = os.path.join("C:\\Users\\Administrator\\Desktop", name) >> script.ps1
cmd /c echo 	shutil.copy2(pathname, "C:\\patouche\\backpy") >> script.ps1

cmd /c echo time = datetime.datetime.now() >> script.ps1
cmd /c echo log =  "Backup performed using Python at : " + time.isoformat() + "\n" >> script.ps1
cmd /c echo f = open("C:\\backup\\JamesWork\\log.txt", 'a') >> script.ps1
cmd /c echo f.write(log) >> script.ps1
cmd /c echo f.close() >> script.ps1

Then just copy paste all in the Windows Machine and voilà !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment