linux 几个不常用命令学习 之 yes命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
看了极客里面的文章:一些实用但不为人知的unix命令
文章参考:http://blog.jobbole.com/66590/
准备好好学习下这些命令,成为Linux高手
这次学习命令:yes 重复输出字符串
参考:http://codingstandards.iteye.com/blog/826940
这个文章写的很好,我就简单的总结下:
1) 自动回答命令行提示,
在安装软件的时候,大家应该碰到过,需要回答n多,yes or no,每个打特别费劲,可用这个命令解决。
还有在删除n个文件时,需要确认要不要删除。等等场景
yes | rm -i * #删除时,自动回答y,就删除了
2) 重复输出某个字符串
例子:
#!/bin/sh yes hello >hello.txt & PID=$! sleep 1 kill $PID ls -l hello.txt
执行:sh 1.sh
知识点:
$! 获得上一个进程的id
联想:怎么获得当前线程呢?
#!/bin/sh echo "main: $$"
sh 1.sh&输出:[1] 19678
[*@* test]$ main: 19678
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)