一些常用shell脚步
作者:互联网
原文链接:http://www.cnblogs.com/devtao/p/3397692.html
在当前目录下循环建立N个文件
#!/bin/bash for i in $(seq 1 10) do name=$(printf test%02d.txt $i) touch $name done
列出最常用的10条历史命令
#!/bin/bash #列出最常用的10条历史命令 printf "%-32s %-10s\n" 命令 次数 cat ~/.bash_history | awk '{ list [$1] ++; } \ END { for (i in list ) { printf ("%-30s %-10s\n",i,list [i]); } }'| sort -nrk 2 | head
转载于:https://www.cnblogs.com/devtao/p/3397692.html
标签:10,常用,shell,devtao,脚步,list,www,printf,bash 来源: https://blog.csdn.net/weixin_30228685/article/details/98235787