From b62a38e5bd9e47dc764461ab2e7dc0ba004aa1af Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 00:18:20 -0400 Subject: [PATCH] Update README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 10c98d3..ba86053 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,12 @@ install: node-deps python-deps format: black . -inline-python-example: +python-argv: #!/usr/bin/env python - print('hi') + from sys import argv + print(sys.argv) -argv-example: +bash-vars: set -euxe echo "HELLO, $WHO" echo $@ @@ -59,7 +60,7 @@ python-deps: node-deps: yarn install -system-deps: +system-deps: @confirm brew install pipenv ``` @@ -67,10 +68,10 @@ system-deps: ```console - format - - inline-python-example + - python-argv + - bash-vars - full-install - install - - env - argv-example - dangerous-example - python-deps