lyx_mirror/lib/scripts/general_command_wrapper.py
José Matox 2f7c9e057a Sanitize python scripts headers
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5246 a592a061-630c-0410-9148-cb99ea01b6c8
2002-09-10 10:14:10 +00:00

25 lines
626 B
Python

#! /usr/bin/env python
# This is a general wrapper script that will allow
# us to maintain security in the external material
# insets.
# Use like this:
# general_command_wrapper.py stdin-filename stdout-filename command args
# Use "-" for stdin-filename and stdout-filename to use the normal stdio
import sys
import os
if sys.argv[1] != "-":
os.close(0)
sys.stdin = open(sys.argv[1],"r")
if sys.argv[2] != "-":
print "Redirecting" + sys.argv[2]
os.close(1)
os.close(2)
sys.stdout = open(sys.argv[2],"w")
sys.stderr = open(sys.argv[2],"w")
os.execvp(sys.argv[3], sys.argv[3:])
print "Could not run " + sys.argv[3]