通信人家园

标题: [原创]shell实践中总结  [查看完整版帖子] [打印本页]

时间:  2012-5-8 09:57
作者: xiaoxiaota     标题: [原创]shell实践中总结

1. 在shell中无意中按了ctrl+s,系统怎么也登录不上去了,网上搜到解决方法Key        Function
Ctrl-c        Kill foreground process
Ctrl-z        Suspend foreground process
Ctrl-d        Terminate input, or exit shell
Ctrl-s        Suspend output
Ctrl-q        Resume output
Ctrl-o        Discard output
Ctrl-l        Clear screen
但是控制字符都是可以用(stty命令)更改的。
楼主可以用stty -a看看终端配置。



2. 想连续执行某条命令的脚本
{
while TRUE
do
brctl show ===> your command here
sleep 1
done
}


3. grep 正则表达式
grep 'xxx|yyy'  ====>注意是单引号,否则当成字符串了


4. 打包特定代码的脚本
find . -name "xyz*."[ch] -exec cp {} ./mycode \;
==>在当前目录下查找包含xyz的C和H文件,然后拷贝到当前目录的mycode下面。


。。。


时间:  2012-5-8 10:09
作者: xiaoxiaota

关于第一个可参考:http://topic.csdn.net/u/20080714/11/24380939-ba26-485d-94cb-a6031991b6b3.html




通信人家园 (https://www.txrjy.com/) Powered by C114