← Back to context Comment by theanonymousone 1 month ago I don't think you need any dependencies to match Bash scripting in capability. 3 comments theanonymousone Reply verdverm 1 month ago Yaml support is required, this requires a third party package because python does not have an option in the stdlib hsbauauvhabzb 1 month ago You can even wrap shell / system commands in python and capture the output, so it’s basically a superset! kh_hk 1 month ago You can also inline python inside shell scripts, does that make them equal sets? :) life() { python3 << EOF print(42) EOF }
verdverm 1 month ago Yaml support is required, this requires a third party package because python does not have an option in the stdlib
hsbauauvhabzb 1 month ago You can even wrap shell / system commands in python and capture the output, so it’s basically a superset! kh_hk 1 month ago You can also inline python inside shell scripts, does that make them equal sets? :) life() { python3 << EOF print(42) EOF }
kh_hk 1 month ago You can also inline python inside shell scripts, does that make them equal sets? :) life() { python3 << EOF print(42) EOF }
Yaml support is required, this requires a third party package because python does not have an option in the stdlib
You can even wrap shell / system commands in python and capture the output, so it’s basically a superset!
You can also inline python inside shell scripts, does that make them equal sets? :)