One Hat Cyber Team
Your IP :
216.73.216.216
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 :
tnef.sh
#! /bin/bash # /usr/bin/tnef.sh # # nautilus helper to extract a tnef file's contents into a subfolder of the # tnef file's location. # todo: # error checking (disk space, unwritable etc). # how could the calling nautilus window be told to refresh it's contents so the # extracted folder becomes visible straight away. (for paths with spaces). filefullpath="$1" file=`basename "$filefullpath"` filepath="`dirname "$filefullpath"`/"$file".extract" #echo $filefullpath #echo $file #echo $filepath if ! [ -d "$filepath" ]; then echo " creating folder $filepath..." mkdir "$filepath" echo " extracting $file tnef contents..." tnef --verbose --save-body -C "$filepath" "$filefullpath" echo " complete." sleep 4 else echo " default extract folder $filepath" echo " already exists, extraction aborted." sleep 6 fi