Bugswriter / notflix

Notflix is a shell script to search and stream torrent.
GNU General Public License v3.0
1.9k stars 176 forks source link

Changing shebang from sh to bash #21

Closed WitherCubes closed 2 years ago

WitherCubes commented 2 years ago

I am changing the shebang from #!/bin/sh to #!/bin/bash because the script will break when people who symlink other shells (like dash) to /bin/sh because this program uses here-strings which is not POSIX and a bash feature.

WitherCubes commented 2 years ago

This problem can be easily solved by implementing #30.