I'm trying to make it so my bash shellcode can take multiple files as arguments. How would I do this?
atm this shellcode checks if only one files exsist and it checks every $2 seconds...
How would I make it take more files as arguments?
#!/bin/bash while [ ! -e $1 ] do sleep $2 if [ -e $1 ] then echo "$1 was created!" fi done