Compare commits

...

4 Commits

Author SHA1 Message Date
92ad9bfa6b Improve demo script 2022-04-08 13:03:48 -07:00
123ade3e13 Use variables for pager and interpreter commands 2022-04-08 13:00:28 -07:00
580f215ce3 Reformat with black 2022-04-08 12:58:05 -07:00
426585d412 --skip-pager
Closes #9
2022-04-08 12:57:16 -07:00
2 changed files with 25 additions and 8 deletions

View File

@ -1,3 +1,5 @@
echo -n 'User: '
whoami
echo
echo '`ls -l`:'
ls -l
touch testfile

View File

@ -27,17 +27,32 @@ def yn(question, options="yn"):
return response
parser = argparse.ArgumentParser(description="Securely run a script from the Internet")
parser = argparse.ArgumentParser(
description="Securely run a script from the Internet"
)
parser.add_argument("url", help="URL of the script")
parser.add_argument(
"-s",
"--skip-pager",
action="store_true",
help="Skip pager and confirmation; run script immediately",
)
args = parser.parse_args()
url = args.url
interpreter = ["bash"]
pager = ["less"]
content = requests.get(url).content
launch("less", content)
response = yn("Do you want to run this script?")
if response == "y":
launch("bash", content)
if args.skip_pager:
launch(interpreter, content)
else:
print("Script not run.")
launch(pager, content)
response = yn("Do you want to run this script?")
if response == "y":
launch(interpreter, content)
else:
print("Script not run.")