File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -166,14 +166,14 @@ def runline(ai, usertext):
166
166
return
167
167
if usertext == "q" :
168
168
return "q"
169
- pipepos = usertext .find ("|" )
170
- if pipepos != - 1 :
171
- usertext = usertext [0 :pipepos - 1 ]
172
- print ("TODO: | pipes are not yet implemented in r2ai" , file = sys .stderr )
173
- redipos = usertext .find (">" )
174
- if redipos != - 1 :
175
- usertext = usertext [0 :redipos - 1 ]
176
- print ("TODO: > redirections are not yet implemented in r2ai" , file = sys .stderr )
169
+ # pipepos = usertext.find("|")
170
+ # if pipepos != -1:
171
+ # usertext = usertext[0:pipepos - 1]
172
+ # print("TODO: | pipes are not yet implemented in r2ai", file=sys.stderr)
173
+ # redipos = usertext.find(">")
174
+ # if redipos != -1:
175
+ # usertext = usertext[0:redipos - 1]
176
+ # print("TODO: > redirections are not yet implemented in r2ai", file=sys.stderr)
177
177
if usertext .startswith ("-H" ):
178
178
try :
179
179
return r2ai_vars (ai , usertext [2 :].strip ())
You can’t perform that action at this time.
0 commit comments