frida / frida-tools

Frida CLI tools
Other
348 stars 97 forks source link

Use shlex instead of str.split for magic commands #98

Closed yotamN closed 2 years ago

yotamN commented 2 years ago

The shlex module is more suitable for shells and let us support quoting and escaping without any extra work. It's important to have that now to support paths with spaces in them.

oleavr commented 2 years ago

Thanks!