logoalt Hacker News

hsbauauvhabzbtoday at 10:33 AM1 replyview on HN

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


Replies

kh_hktoday at 12:28 PM

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

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