Functions | |
| def | FileIn |
| Function to process a file through a shell pipe. | |
| def | FileOut |
| Function to save the output from a shell pipe to a file. | |
| def | FileInOut |
| Function to process a file through a shell pipe and save the output to another file. | |
Variables | |
| string | __copyright__ |
| string | __license__ |
| VERBOSE = False | |
| def SLIMutils.MultiPipe.FileIn | ( | fin, | ||
| cmds | ||||
| ) |
Function to process a file through a shell pipe.
FileIn(fin,cmds) fin - string holding name of the input file cmds - list of strings representing commands in the pipe Returns 0 if successful.
Definition at line 39 of file MultiPipe.py.
| def SLIMutils.MultiPipe.FileInOut | ( | fin, | ||
| cmds, | ||||
| fout | ||||
| ) |
Function to process a file through a shell pipe and save the output to another file.
FileInOut(fin,cmds,fout) fin - string holding name of the input file cmds - list of strings representing commands in the pipe fout - string holding name of the output file Returns 0 if successful.
Definition at line 84 of file MultiPipe.py.
| def SLIMutils.MultiPipe.FileOut | ( | cmds, | ||
| fout | ||||
| ) |
Function to save the output from a shell pipe to a file.
FileOut(cmds,fout) cmds - list of strings representing commands in the pipe fout - string holding name of the output file Returns 0 if successful.
Definition at line 60 of file MultiPipe.py.
| string __copyright__ |
| string __license__ |
Initial value:
""" This file is part of SLIMpy . SLIMpy is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SLIMpy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SLIMpy . If not, see <http://www.gnu.org/licenses/>. """
Definition at line 4 of file MultiPipe.py.
| VERBOSE = False |
Definition at line 29 of file MultiPipe.py.
1.5.6