blob: 1a1adb0e9e9ad9cf9077a0bff75c54364f38fe78 (
plain)
1
2
3
4
5
6
7
8
|
help: "Show Vyatta version information"
run: for cl in /usr/share/doc/vyatta-*/changelog.gz ; do
dir=${cl%/*} ;
pkg=${dir##*/} ;
printf " %-20s " ${pkg} ;
test ${#pkg} -lt 20 || echo -ne \\n\\t ;
gunzip -c $cl | tail -n1 ;
done
|