[Solved] what is meaning of this python call [closed]


  • Is it normal: The normal way to call python scripts is: python script_name.py ARGS, so if what you pasted is made intentionally, it is not normal.

  • How to interpret the CMD call: The thing you added is running file1 with the arguments -D python dir2/file2 and then redirecting STDOUT to script.py So to gain any insight you need to know what file1 is. Try file --help or file --h, if that does not help, try opening it with hexdump or run strings file1 which will show the literal strings present in the file. They might give you an insight.

2

solved what is meaning of this python call [closed]