Let\'s say I\'ve got this one-line Python module called say_hello.py.
say_hello.py
print \'Hello World\'
How can I make the script executab
First line of script should look something like:
#!/usr/bin/python
although the exact path may be different on your system. Then, make the script executable and put it somewhere in your PATH.