摘要:
编辑器 & IDEVIMgmarik/vundlerizzatti/funcoo.vimhttps://github.com/scrooloose/nerdtree.gitModelinerDrawItvim-scripts/Alignhttps://github.com/Lokaltog/vim-... 阅读全文
摘要:
脚本名称为:Big_Users.sh#!/bin/bash## Big_Users - find big disk space users in various directories#########################################################... 阅读全文
摘要:
mysql test -u test -X -e 'select * from employees where empid = 1'其中 -X 就是以xml形式显示 阅读全文
摘要:
脚本名:mtest1.sh#!/bin/bash# test connecting to the Mysql serverMYSQL=`which mysql`$MYSQL test -u root -p运行脚本时会让用户输入密码:这样对于非交互脚本来说并不够好。-p命令行参数导致Mysql暂停下来... 阅读全文
摘要:
举个例子:gawk 'BEGIN{var["a"]=1var["g"]=2var["m"]=3var["u"]=4asort(var,test)for(i in test)print "Index:",i," - value:",test[1]}'这时候敲回车就能输出Index: 4 - valu... 阅读全文
摘要:
默认情况下,sed编辑器会将进步的结果输出到STDOUT上,你可以在shll脚本中使用所有重订向sed编辑器输出的标准方法。 你可以在脚本中用反引号来将sed编辑器命令的输出重定向到一个变量中供后面使用。下面是个使用sed脚本来向数值计算结果添加逗号的例子文件名为:fact.sh#!/bin/ba... 阅读全文