Linux (Ubuntu): bash: tailf: command not found
程序员文章站
2022-07-12 13:14:55
...
先看结论
不要用
tailf my_log
应该用
tail -f my_log
过程
今天需要在服务器上执行耗时的操作,根据以前的笔记,使用:
nohup mycommand >>my_log &
tail -f my_log
第一行将终端输出转移到文件my_log 中,保证终端关闭或ssh连接终端后命令继续执行;(nohup是no hung up 的意思)
第二行在终端显示my_log的最新内容。
然而一直报错。
bash: tailf: command not found
看到有人说要安装一下utils,也有人说要配环境变量。但我试了都不行。
最后自己发现改为以下命令就好了:
tail -f my_log
上一篇: 常用算法
推荐阅读
-
bash scp command not found的解决方法
-
ubuntu下安装vue/cli提示No command 'vue' found
-
linux 执行 javac 报错 javac: command not found
-
解决 bash: vue command not found
-
linux下提示bash:command not found
-
-bash: mysqladmin: command not found问题解决
-
linux脚本运行错误:$'ls\r': command not found
-
svn 没有killall命令的解决方法 -bash: killall: command not found
-
Linux—使用man命令:man:command not found
-
bash scp command not found的解决方法