mirror of
https://github.com/git/git.git
synced 2024-11-20 19:33:59 +01:00
a0f22e996c
Signed-off-by: Simon Hausmann <simon@lst.de>
26 lines
481 B
Python
Executable File
26 lines
481 B
Python
Executable File
#!/usr/bin/python
|
|
#
|
|
# p4-debug.py
|
|
#
|
|
# Author: Simon Hausmann <hausmann@kde.org>
|
|
# License: MIT <http://www.opensource.org/licenses/mit-license.php>
|
|
#
|
|
# executes a p4 command with -G and prints the resulting python dicts
|
|
#
|
|
import os, string, sys
|
|
import marshal, popen2
|
|
|
|
cmd = ""
|
|
for arg in sys.argv[1:]:
|
|
cmd += arg + " "
|
|
|
|
pipe = os.popen("p4 -G %s" % cmd, "rb")
|
|
try:
|
|
while True:
|
|
entry = marshal.load(pipe)
|
|
print entry
|
|
except EOFError:
|
|
pass
|
|
pipe.close()
|
|
|