|
Making programs easy for any user to start
If you write a program in Perl, your colleague writes a program in Tcl/Tk and your company runs an open source program that's written in Python, how do your users ensure that they get the right interpretter to run the program? You certainly don't want them to have to remember to type something like:
perl bestest
tcl greatprog
python goodprice
On systems running a Microsoft Windows operating system, you can simply give the programs appropriate extensions - .pl for Perl, .tcl for Tcl and .py for Python in my examples and - provided that the registry is set up correctly - the operating system will know which language interpretter to use.
On systems running Linux or Unix based operating systems, you have two steps to take:
a) The very first line of the file should start # - ! - then the full path to the executable language - typically:
#!/usr/bin/perl
#!/usr/bin/tclsh or #!/usr/bin/wish
#!/usr/bin/python
b) The file should be marked as being executable - normally done using the chmod command. Examples:
chmod ug+x bestest
chmod a+x greatprog
chmod 550 goodprice
On all systems you might also want to update the path that the operating system looks in for executable files using the PATH environment variable. Setting of this variable depends on which (if any) command line interpretter you're using. If you don't set the path, you can still run the program by double clicking it (windows explorer) or prefixing the file name with ./ to run it on Unix or Linux. Thus:
./bestest
./greatprog
./goodprice (written 2005-05-29 10:44:45)
Associated topics are indexed under P203 - More about the Perl EnvironmentT202 - Tcl/Tk - Tcl FundamentalsY102 - Python - Fundamentals
Some other Articles
Looking up IP addresses08:45 is a difficult timeAn O level comes in handythe Stately Homes of EnglandMaking programs easy for any user to startHow far should our support goUK Tax payment totals and where the money is spentGone Racing - Larkhill, WiltshireThe backtick operator in Python and Perl1 in 48 steel
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|