Comment by verdverm

9 hours ago

Works all and well until you need a dependency, then you need to do all the same project setup as normal.

Stopped using python for scripting for this reason

I don't think you need any dependencies to match Bash scripting in capability.

  • 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? :)

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