[ create a new paste ] login | about

Project: fedecarg
Link: http://fedecarg.codepad.org/NNe7HcmG    [ raw code | output | fork ]

fedecarg - Python, pasted on Jun 10:
1
2
3
4
5
6
7
8
import os, sys 

findcmd = 'grep -R "cherrpy.request" .'

print "Searching...:"
for f in os.popen(findcmd).readlines():
    if str(f[:-1]).find(".svn") == -1:
        print str(f[:-1])


Output:
1
Disallowed system call: SYS_pipe


Create a new paste based on this one


Comments: