When i write on terminal:
./sherlock *.txt
it works
but when I try to do the same using python subprocess like
import subprocess
subprocess.call(['./sherlock','*.txt'])
import subprocess
subprocess.call('./sherlock','*.txt',shell=True)
import subprocess
subprocess.call('./sherlock','*.txt',shell=False)
Neither of this is working please help.