shebang
Example
# 1)
$ cat test
print("hello friend")
# 2)
$ ./test
./test: line 2: syntax error near unexpected token `"hello friend"'
./test: line 2: `print("hello friend")'
# 3)
$ which python3
/usr/bin/python3
$ nano test
...
$ cat test
#!/usr/bin/python3
print("hello world")
# 4)
$ ./test
hello friendLast updated