mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-02 14:56:10 -04:00
15 lines
181 B
Bash
Executable file
15 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
|