python: command not found
命令会找到每一个 “python” 字样,并把它替换成 “python3”。
·
解决方法:
通过管道传入 sed -e 's/python/python3/'
指令,如:
echo 'python command_to_run.py' | sed 's/python/python3/g'
在这个例子中,sed 's/python/python3/g'
命令会找到每一个 “python” 字样,并把它替换成 “python3”。
- s 代表替换操作
- g 代表全局替换
同理,假设你有一个命令 command1,它的输出中包含了 “python”,你希望将 “python” 替换为 “python3”,然后把替换后的结果作为 command2 的输入,你可以这样写:
command1 | sed 's/python/python3/g' | command2
更多推荐
已为社区贡献1条内容
所有评论(0)