#!(Shebang)

Shebang(シェバン, シバン)とは、UNIXのスクリプトの #! から始まる1行目のことです。スクリプトを読み込むインタプリタを指定します。
#!/bin/bash
echo 'Hello world!'

コメント