| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11490/root/usr/bin/ |
Upload File : |
#!/bin/bash
# Another simple wrapper script. This time for scrollkeeper-rebuilddb
# This one is slightly more complex in that we have to run a command!
# We also need to pull out the paths from the relevant place first.
prefix=/usr
exec_prefix=/usr
bindir=/usr/bin
convert_dir=/usr/share/omf
datarootdir=/usr/share
statedir=/var/lib/rarian
datadir=/usr/share
output_dir=${datadir}/help
package_version=0.8.1
convert_string="REPLACEME"
if [ ! 1 ]
then
if [ -e $statedir/rarian-update-mtimes ]
then
for x in $(grep -e '^0:@:' $statedir/rarian-update-mtimes)
do
if [[ $convert_string != "REPLACEME" ]]
then
convert_string=$convert_string:${x##0:@:}
else
convert_string=${x##0:@:}
fi
done
else
convert_string=$convert_dir
fi
$bindir/rarian-sk-update -v --clean-index -o $convert_string
fi