mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-01-11 23:53:16 +00:00
11 lines
218 B
Plaintext
Executable File
11 lines
218 B
Plaintext
Executable File
# install tek4010 in ~/bin
|
|
|
|
# create ~/bin directory, if it does not exist
|
|
[ ! -d ~/bin ] && mkdir ~/bin
|
|
|
|
# copy the file to ~/bin, make it executable
|
|
cp tek4010 ~/bin
|
|
chmod +x ~/bin/tek4010
|
|
|
|
echo "tek4010 installed"
|