File: install-software.txt

package info (click to toggle)
clitest 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 532 kB
  • sloc: sh: 1,611; makefile: 24
file content (26 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (2)
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
$ 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>
$