mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 11:09:09 -04:00
16 lines
181 B
Bash
Executable File
16 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILE=~/Desktop/test/ghost
|
|
FILE1=~/Desktop/test/cpghost
|
|
|
|
|
|
while [[ true ]]
|
|
do
|
|
if [ -f $FILE ]
|
|
then
|
|
cp $FILE $FILE2
|
|
echo got it
|
|
fi
|
|
sleep 2
|
|
done
|