blob: 0fc82b08675a53eaa809a1a4888739a40deca8f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if [ -f /etc/tux/config/server ]
then
SERVER=`cat /etc/tux/config/server`
else
SERVER="http://trinux.sf.net/pkg"
fi
snarf $SERVER - | cut -d'"' -f6 | grep "tgz" | sort | more
|