stdout = check_output(["./cl_download.sh '/session.txt'"]).decode('utf-8')
I am trying to pass the file session.txt as an argument to shell script in flask. Getting errors while running the script. However the script runs successfully when no argument is passed.
Is there any way to pass the file name as an argument to shell script in flask ?