Code Sample |
echo $PATH |
Code Sample |
env |
Code Sample |
ln -s python2.5 /usr/local/bin/python |
Code Sample |
cd /usr/local/bin ln -s python2.5 python |
Quote |
How do I get it into a file like the /opt/filetool.lst so that it is there when I type "python" in the terminal window? |
Code Sample |
mkdir /mnt/sda1/mydsl |
Code Sample |
(This will unload the extension:) mydsl-load [path_to_extension_file] (And a second time, to reload it:) mydsl-load [path_to_extension_file] |
Quote |
So if I understand you right, I need to somehow make a syslink to type, telling the system to activate python inside the XShell I'm in. But I suppose it would be better if the three python files were in the 'mydsl' file instead. |
Code Sample |
(Generate MD5 hash of 'python2.5.unc' and display it on-screen:) md5sum python2.5.unc (Output the contents of 'python2.5.unc.md5.txt' to the screen:) cat python2.5.unc.md5.txt If the two strings are the same, your file is clean. If they are different, your file is corrupted. |
Code Sample |
md5sum -c python2.5.unc ('python2.5.unc.md5.txt' must be present.) |