When i debugged c code, i always use 'gdb a.out < test' to redirect standard input stream. But when it comes to pdb, i found it doesn't work. After searching in pdb help doc, i still can't find something relative to this problem.
EDIT: I post my code. Can you help me change it to read from file with the minimum modification. Thanks.
cnt = int(raw_input())
paths = []
for cs in range(cnt):
action, path = map(None, (raw_input() + " dumb").split(" ", 1))
if (action == "pwd"):
print "/",
for p in paths:
print p + "/",
print
else:
strs = path.split("/")
for i in range(len(strs)):
p = strs[i]
if (p == ""):
continue
if (p == ".."):
paths.pop()
else:
paths.append(p)