From 890dce363ebb3e86434e7d80dde935333d1d9995 Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Fri, 23 Apr 2021 15:15:47 +1200 Subject: [PATCH] -l flag for run --- readme.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index fb377d9..caf2aa3 100644 --- a/readme.md +++ b/readme.md @@ -149,15 +149,18 @@ cli/index.js ppman list # Install python 3.9.1 cli/index.js ppman install python 3.9.1 +# Install latest python +cli/index.js ppman install python + # Run a python script echo 'print("Hello world!")' > test.py -cli/index.js run python 3.9.1 test.py +cli/index.js run python test.py -l 3.9.1 # Run the script using the latest version -cli/index.js run python '*' test.py +cli/index.js run python test.py # Run using python 3.x -cli/index.js run python 3.x test.py +cli/index.js run python test.py -l 3.x ```