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
/
View File Name :
rarian-sk-extract
#!/usr/bin/bash # Wrapper around xsltproc to mimic scrollkeeper-extract. # # Note that scrollkeeper internally uses libxslt for # this, so this method is cheaper and achieves the same result print_usage() { echo -e "Usage: " echo -e "`basename $0` <xml file> <stylesheet 1> <output file 1> <stylesheet 2> <output file 2> ..." } if [[ $# < 2 ]] then print_usage exit 0 fi infile=$1 shift 1 while true; do xsltproc --xinclude --xincludestyle $1 $infile > $2 #echo "xml: $infile style: $1 out: $2" shift 2 if [[ $# < 2 ]]; then break fi done