How do I make a python script a unix-able command?
Let's say i have a python script:
print "hello foo bar"
and i want to call the python script like a normal linux command, something that people can:
deb www.myfoobar.com foobar
deb-src www.myfoobar.com foobar
sudo apt-get install foobar
Then after installation, something that someone can just call from terminal:
$ foobar
hello foo bar
debfile and repository. A quick google search turns up, for example, community.linuxmint.com/tutorial/view/162 and impermium.com/blog/hosting-deb-packages-locally, and many other options.