当我在 linux 终端中执行一个简单的程序时,一切正常。python3示例:
print('input value')
value = input()
print('your value', value)
当这个脚本被 gradle 执行时,行为是不同的:
示例 gradle 任务:
task (testInput, type:Exec){
standardInput = System.in
commandLine 'python', 'test.py'
}
例如,当按下箭头时,会发生这种情况:
input value
^[[A^[[D^[[C^[[A^[[D^[[C^[[A^[[D^[[D^[[A^[[C^[[D^[[C^[[D^[[A^[[C^[[D
为什么?我怎样才能关闭它?