I tried to do some work that need to deal with python's argv in linux.
The command called shall be something like python test.py export file xxx.json, and I could use argv[4] as file_name. And here if I just write * as file_name, it would be the first file in the current directory.
How can I avoid this kind of error? argv[4] == '*' will return false.