From 1a04b5f8899a41a662568d6a93335555661cd61e Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 6 Apr 2021 17:34:08 +1200 Subject: [PATCH] Show semver selector on cli --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme.md b/readme.md index 5835096..1dcbe02 100644 --- a/readme.md +++ b/readme.md @@ -143,6 +143,13 @@ cli/index.js ppman install python 3.9.1 # Run a python script echo 'print("Hello world!")' > test.py cli/index.js run python 3.9.1 test.py + +# Run the script using the latest version +cli/index.js run python '*' test.py + +# Run using python 3.x +cli/index.js run python 3.x test.py + ``` If you are operating on a remote machine, add the `-u` flag like so: