Codebase list clitest / ff84d39f-ab0a-44f6-b69b-e3994ea443a3/main examples / install-software.txt
ff84d39f-ab0a-44f6-b69b-e3994ea443a3/main

Tree @ff84d39f-ab0a-44f6-b69b-e3994ea443a3/main (Download .tar.gz)

install-software.txt @ff84d39f-ab0a-44f6-b69b-e3994ea443a3/mainraw · history · blame

$ cd /tmp
$ url="https://fossies.org/linux/privat/txt2tags-2.6.tgz"
$ curl -O -s -S "$url"                     # download
$ du -h txt2tags-2.6.tgz                   # verify size
532K	txt2tags-2.6.tgz
$ tar tzf txt2tags-2.6.tgz | sed -n '$='   # verify number of files
545
$ tar xzf txt2tags-2.6.tgz                 # extract
$ cd txt2tags-2.6
$ ls -1F                                   # list contents
COPYING
ChangeLog
README
doc/
extras/
po/
samples/
test/
txt2tags*
$ ./txt2tags -V                            # test execution
txt2tags version 2.6 <http://txt2tags.org>
$ test -d ~/bin || mkdir ~/bin             # create folder if needed
$ cp txt2tags ~/bin/                       # install to user folder
$ ~/bin/txt2tags -V                        # final test
txt2tags version 2.6 <http://txt2tags.org>
$