Source code for feed2exec.plugins.exec

import subprocess


[docs]def output(command, *args, **kwargs): """ The exec plugin is the ultimate security disaster. It simply executes whatever you feed it without any sort of sanitization. .. danger:: do not use. """ return subprocess.check_call([command] + list(args))