This file is indexed.

/usr/bin/build-progress.sh is in kdesdk-scripts 4:4.13.0-0ubuntu1.

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
20
21
22
#!/bin/sh

# This method gives some kind of status message in the title bar of Konsole,
# xterm, etc.. Thanks have to go to Malte Starostik
# <malte@kde.org> for the code :-)
set_title() {
if ([ "$TERM" = "xterm" ] || [ "$TERM" = "xterm-color" ] || [ "$TERM" = "screen" ]) && tty -s; then
  echo -ne "\033]0;$1\007"
fi
}
. ./kde-buildrc
set_title "Progress of kde-build script..."

cd $KDELOGDIR
while true; do 
    dir=`ls -t | head -n 1 | xargs grep "Entering directory" | tail -n 1 | awk "{print \\$4}" | sed "s'^$KDESRCDIR/''g"`
    set_title "Building $dir"
    clear
    grep -hi "time needed" *build* | \
	sed "s/\:T/ T/g"
    sleep 5
done;