/usr/share/debroster/dr.sh is in debroster 1.17.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash
function scroll() {
while read item; do
printf "%*s" $(($(($(</dev/tty stty size|sed -e 's/[^ ]* \([^ ]*\)/\1/')-$(echo "$item"|wc -c)))/2)) ""
echo $item
sleep 1
done
}
function build_arg_list() {
</var/lib/dpkg/available sed -ne 's/^Maintainer: //p' |
sort -u -k1.1,3.0 |
unsort
}
while true ; do
build_arg_list | scroll
done
|