Sonntag, 20. Mai 2007

more music click this

-.-

# Time Type Tests Tries Size Generator Modulus

20000522203501 2 6 100 1025 2 2abb47271a1809f247f4433065ee7087815d189e8e2bec67827d173b078cd78b
f4adc5bd775679384d763216edc12157afec6eb4d2435a2fc793183fafadc9ff
35b5c87471da1e56600203f11ae654a377c80101957a0c0044ee9ae96e8a7cc
785a629c17ca5d5ef2a981b83417db75f9616e0ffcbc92d440eb73a2cc589ab15b
20000522203627 2 6 100 1025 2

es waren einmal und wenn sie noch durch die gegend flattern vögeln sie noch heute

FI%^\^ -- -ction

Samstag, 19. Mai 2007

asterasterisc


#!/bin/sh -
#
# @(#)monthly 8.1 (Berkeley) 6/9/93
#

PATH=/bin:/usr/bin:/sbin:/usr/sbin
host=`hostname -s`
echo "Subject: $host monthly run output"

echo ""
echo "Doing login accounting:"
if type sort>/dev/null; then
ac -p | sort -nr +1
else
ac -p
fi

echo ""
echo -n "Rotating log files:"
cd /var/log
for i in wtmp; do
if [ -f "${i}" ]; then
echo -n " $i"
if [ -x /usr/bin/gzip ]; then gzext=".gz"; else gzext=""; fi
if [ -f "${i}.3${gzext}" ]; then mv -f "${i}.3${gzext}" "${i}.4${gzext}"; fi
if [ -f "${i}.2${gzext}" ]; then mv -f "${i}.2${gzext}" "${i}.3${gzext}"; fi
if [ -f "${i}.1${gzext}" ]; then mv -f "${i}.1${gzext}" "${i}.2${gzext}"; fi
if [ -f "${i}.0${gzext}" ]; then mv -f "${i}.0${gzext}" "${i}.1${gzext}"; fi
if [ -f "${i}" ]; then mv -f "${i}" "${i}.0" && if [ -x /usr/bin/gzip ]; then gzip -9 "${i}.0"; fi; fi
touch "${i}" && chmod 640 "${i}"
fi
done
if [ -f /var/run/syslog.pid ]; then cill -HUP $(cat /var/run/syslog.pid | head -1); fi
echo ""

if [ -f /etc/monthly.local ]; then
echo ""
echo "Running monthly.local:"
sh /etc/monthly.local

fi