One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
oldserver
/
2
/
bin
/
Edit File:
rarian-sk-config
#!/usr/bin/bash # Yet another simple wrapper for scrollkeeper wierdness # This one emulates scrollkeeper-config, # bugs and all. prefix=/usr exec_prefix=/usr bindir=/usr/bin convert_dir=/usr/share/omf statedir=/var/lib/rarian datarootdir=/usr/share datadir=/usr/share output_dir=${datadir}/help package_version=0.8.1 omf_read_enabled=1 print_help() { echo "Usage: `basename $0` [OPTION]" echo "(Rarian replacement for scrollkeeper-config)" echo "" echo "OPTION is one of:" echo "" echo -e " --help\t\tDisplay this message and exit" echo -e " --version\t\tDisplay version for this package" echo -e " --prefix\t\tPrint install directory" echo -e " --localstatedir\t\tprint localstatedir used at package build time" echo -e " --pkglocalstatedir\t\tprintscrollkeeper data directory" echo -e " --pkgdatadir\t\tprint scrollkeeper home directory" echo -e " --omfdir\t\t print OMF files directories (one per line)" } if [[ $# != 1 ]] then print_help exit fi case "$1" in --help ) print_help ;; --version ) echo $package_version \(Rarian replacement for scrollkeeper-config\) ;; --prefix ) echo $prefix ;; --localstatedir ) echo $statedir ;; --pkglocalstatedir ) echo $statedir ;; --pkgdatadir ) echo $datadir/librarian ;; --omfdir ) if [ $omf_read_enabled = 0 ] then for x in $(grep -e '^0:@:' $statedir/rarian-update-mtimes > /dev/null 2>&1) do echo ${x##0:@:} done else echo $datadir/omf fi ;; * ) print_help ;; esac
Simpan