Linux (Ubuntu): bash: tailf: command not found
先看结论不要用tailf my_log应该用tail -f my_log过程今天需要在服务器上执行耗时的操作,根据以前的笔记,使用:nohup mycommand >>my_log &tail -f my_log第一行将终端输出转移到文件my_log 中,保证终端关闭或ssh连接终端后命令继续执行;(nohup是no hung up 的意思)第二行在终端显示my_log的最新内
·
先看结论
不要用
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
更多推荐
已为社区贡献4条内容
所有评论(0)