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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
Unix Installation
=================
Quick Install
--------------
tar zxvf linklint_X.X.tgz
cd linklint-X.X.X
cp linklint-X.X.X /usr/local/bin/linklint
-- or --
cp linklint-X.X.X /usr/local/bin/
cd /usr/local/bin; ln -s linklint-X.X.X linklint
Detailed Installation Instructions
----------------------------------
1. Choose a directory in which to install Linklint. If you have root
privileges /usr/local/src/ would be a reasonable place:
# cd /usr/local/src/
otherwise, you might want to install Linklint in your home
directory:
$ cd
2. Download linklint-X.X.X.tar.gz Say ok to warnings from browser and
choose "Save File" option.
4. Unzip and untar the distribution:
$ tar -zxvf linklint-X.X.X.tar.gz
5. Move the directory just created:
$ cd linklint-X.X.X/
6. Copy linklint to a directory on your path. If you have root
privileges then /usr/local/bin is a good place
# cp linklint-X.X.X /usr/local/bin/linklint
otherwise you might try putting linklint in your ~/bin/ directory:
$ cp linklint ~/bin/
You can instead use a symbolic link as in:
# cp linklint-X.X.X /usr/local/bin
# cd /usr/local/bin
# ln -s linklint-X.X.X linklint
If you have problems putting linklint into a directory on your path,
you can always run linklint as a Perl script:
$ perl linklint [options]
If your Perl program is not located at /usr/bin/perl and you want to
run linklint as a command then you will have to change the first line
of linklint to point to your Perl program. Use the command "which
perl" to find out where your Perl program resides.
Enjoy!
|