sebastiencs / icons-in-terminal

Use any fonts in the terminal without replacing or patching
MIT License
983 stars 46 forks source link

Replaced shebangs with the preferred for portability #6

Closed gilborty closed 6 years ago

gilborty commented 6 years ago

On Ubuntu 16.04, running print_icons.sh after installing resulted in:

bash: ./print_icons.sh: /usr/bin/bash: bad interpreter: No such file or directory

The preferred shebang for portability is #!/usr/bin/env bash. This PR changes most of the shebangs to that preferred method.

Tested on Ubuntu 16.04.

sebastiencs commented 6 years ago

Thank you @nerdgilbert