Browse Source

Initial version

master
Samuel Sloniker 2 years ago
parent
commit
82bba3540c
  1. 3
      demo_script.sh
  2. 18
      netrun.py
  3. 0
      testfile

3
demo_script.sh

@ -0,0 +1,3 @@
whoami
ls -l
touch testfile

18
netrun.py

@ -0,0 +1,18 @@
import requests
import subprocess
import sys
url = sys.argv[1]
content = requests.get(url).content
subprocess.run(['less'], input=content)
while True:
response = input('Do you want to run this script? [y/n] ').lower().strip()[0]
if response == 'y':
subprocess.run(['bash'], input=content)
break
elif response == 'n':
print('Script not run.')
break
Loading…
Cancel
Save