vim学习
vim在当前行添加下一行,按o即可
  1 set nu 设置行号
  2 syn on 打开语法
  3 set encoding=utf-8 设置编码
  4 set autoindent 自动对齐
  5 set incsearch 查找时很方便,不需要回车
  6 set smartindent 智能对齐
cat /tmp/test/file.txt
hello the world
god is a girl
大家好
pi@bananapi ~/shell $ cat filewhile.sh
#!/bin/bash
while read line;
do echo $line
done < <(find . -typ
 统计一句话每个字母出现的频率
root@yansy:/home/yansy#output=`echo "asdfaadfs"|sed 's/[^\n]/&\n/g'|sed '/^$/d'|sort|uniq -c |tr -d '\n'` root@yansy:/home/yansy# echo $output3 a 2 d 2 f 2 s
tr
root@localhost ~ # mysql -uroot -p -h127.0.0.1 test
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 22123
Server version: 5.1.60-log S
 转phpcj.org
[yansy@www ~]$ vim flashinstall
#!/bin/sh
mkdir flashtmp
cd flashtmp
wget http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz
ta
我们知道apache中的ab测试可以进行一定的压力测试
有没有别的方式呢
我们可以通过curl来模拟并发
见代码
```
for i in {1..50};
do
curl http://www.test.com/my_service &
done
[root@web_dev yansiyu]# cat concurren
http://www.cnblogs.com/lwcoding/p/6596089.html
shell curl 实现rest 并发测试
for i in {1..50};
do
curl http://10.43.95.26:5812/rdk/service/app/example/server/m
cat test
#!/bin/bash
# chkconfig: - 90 10
# description: just a test
echo "Hello,$1"
mv test /etc/init.d/
chmod +x /etc/init.d/test
chkconfig --add test
service test start //可
转:http://www.ttlsa.com/linux-command/linux-dialog-shell/
https://github.com/Crabbit/shell/tree/master/src/menu
function.sh
#!/bin/bash
#
# Creat Time :Tue 12 Nov 2013 11:54:17 PM G
转:http://www.cnblogs.com/liujiahi/archive/2011/03/30/2196400.html
shell中的赋值和操作默认都是字符串处理,在此记下shell中进行数学运算的几个特殊方法,以后用到的时候可以来看,呵呵。
1、错误方法举例
a)
va
转:http://www.qttc.net/201303288.html
通常PHP都做http方式请求了,可以使用GET or POST方式接收参数,有些时候需要在shell命令下把PHP当作脚本执行,比如定时任务。这就涉及到在shell命令下如何给php传参的问题,通常有三种方式传参。
一、使用$argv or $argc参数接收