예제 #1
0
파일: unix.py 프로젝트: VickiFu/dumbo
 def cat(self, path, opts):
     return decodepipe(opts + [('file', path)])
예제 #2
0
파일: unix.py 프로젝트: jso/dumbo
 def cat(self, path, opts):
     opts = Options(opts)
     opts.add('file', path)
     return decodepipe(opts)
 def cat(self, path, opts):
     return decodepipe(opts + [('file', path)])
예제 #4
0
파일: unix.py 프로젝트: zmtmei/dumbo
 def cat(self, path, opts):
     opts = Options(opts)
     opts.add('file', path)
     return decodepipe(opts)