Last active
December 2, 2021 17:21
-
-
Save mxrch/4d23fd49a3bb8d36255898ce5162d6e4 to your computer and use it in GitHub Desktop.
Easy copy/paste on isolated Windows machines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example
❯ python echoer.py script.py
Output :
Then just copy paste all in the Windows Machine and voilà !