Installation

For daily usage

You need just the file eol_check.sh and can copy it somewhere you want.

To access it without path copy it into a bin directory in your $PATH like /usr/bin/ or ~/bin/

Example using wget:

cd ~/bin/
wget https://git-repo.iml.unibe.ch/iml-open-source/eol-check/-/raw/master/eol_check.sh
chmod +x eol_check.sh

Example with curl:

You need the parameter -o <outputfile>

cd ~/bin/
curl -o eol_check.sh https://git-repo.iml.unibe.ch/iml-open-source/eol-check/-/raw/master/eol_check.sh
chmod +x eol_check.sh

Using Git

This variant is more for enthusiasts that want to code or have the docs locally.

cd skripts
git clone https://git-repo.iml.unibe.ch/iml-open-source/eol-check.git
Cloning into 'eol-check'...
...

Shorten commamd

This step is optional.

To shorten typing the script name you can create a softlink “eol” in the bin directory (the repo then can be extracted anywhere):

cd ~/bin/
ln -s ~/skripte/eol-check/eol_check.sh eol

Update

If you used a download of the single file then repeat the download.

When you used the git clone command for installation then go to into your installation directory eg. skripts/eol-check/ and execute git pull.