ifconfig取网络接口列表及ip地址 root@test:/home/test/shell# ifconfig |cut -c 1,2,3,4,5,6|tr -d ' '|tr -s '\n' eth0... 2021年08月03日 阅读 67 次浏览 发表评论 阅读全文
shell相关统计 统计一句话每个字母出现的频率 root@test:/home/test#output=`echo "asdfaadfs"|sed 's/[^\n]/&a... 2021年08月03日 阅读 120 次浏览 发表评论 阅读全文
shell数组 linux shell 关联数组 hash http://blog.csdn.net/ysdaniel/article/details/7909824 [root@... 2021年08月03日 阅读 105 次浏览 发表评论 阅读全文
mysql命令行执行存储过程 转:http://blog.sina.com.cn/s/blog_6d187d2701019uew.html 一:查看存储过程 1,show procedure s... 2021年08月03日 阅读 143 次浏览 发表评论 阅读全文
shell操作mysql root@localhost ~ # mysql -uroot -p -h127.0.0.1 test Enter password: Welcome to the... 2021年08月03日 阅读 67 次浏览 发表评论 阅读全文
shell中特殊符号 root@test:/home/test/shell# time=`uptime` root@test:/home/test/shell# echo $time 2... 2021年08月03日 阅读 78 次浏览 发表评论 阅读全文
php存储过程输出参数 example: <!-- create procedure in_out (in parameter integer) begin declar... 2021年08月03日 阅读 53 次浏览 发表评论 阅读全文
php存储过程输入参数 example: <?php // create procedure withparam(in id int) select username f... 2021年08月03日 阅读 111 次浏览 发表评论 阅读全文
php存储过程输入输出参数 example: <!-- SHOW CREATE PROCEDURE hi; create procedure inoutsp(in id in... 2021年08月03日 阅读 113 次浏览 发表评论 阅读全文