verdverm 4 days ago

Yaml support is required, this requires a third party package because python does not have an option in the stdlib

hsbauauvhabzb 4 days ago

You can even wrap shell / system commands in python and capture the output, so it’s basically a superset!

  • kh_hk 4 days ago

    You can also inline python inside shell scripts, does that make them equal sets? :)

        life() {
          python3 << EOF
        print(42)
        EOF
        }