]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - tools/version-check.sh
Kleiner PXE Fix.
[people/pmueller/ipfire-2.x.git] / tools / version-check.sh
CommitLineData
dd714b8a
MT
1#!/bin/bash
2
3# Einfaches Skript zum Auflisten der Versionsnummern wichtiger Werkzeuge
4
5echo "BENOETIGT - VORHANDEN"
6echo -n "Bash-2.05a - "
7bash --version | head -n1 | cut -d" " -f2-4
8
9echo -n "Binutils-2.12 - "
10echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-4
11
12echo -n "Bzip2-1.0.2 - "
13bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6-
14
15echo -n "Coreutils-5.0 - "
16echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
17
18echo -n "Diffutils-2.8 - "
19diff --version | head -n1
20
21echo -n "Findutils-4.1.20 - "
22find --version | head -n1
23
24echo -n "Gawk-3.0 - "
25gawk --version | head -n1
26
27echo -n "Gcc-2.95.3 - "
28gcc --version | head -n1
29
30echo -n "Glibc-2.2.5 - "
31/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
32
33echo -n "Grep-2.5 - "
34grep --version | head -n1
35
36echo -n "Gzip-1.2.4 - "
37gzip --version | head -n1
38
39echo -n "Linux-Kernel-2.6 - "
40cat /proc/version | head -n1 | cut -d" " -f1-3,5-7
41
42echo -n "Make-3.79.1 - "
43make --version | head -n1
44
45echo -n "Patch-2.5.4 - "
46patch --version | head -n1
47
48echo -n "Sed-3.0.2 - "
49sed --version | head -n1
50
51echo -n "Tar-1.14 - "
52tar --version | head -n1