分类目录归档:bash

shell字符串截取

详细 http://c.biancheng.net/view/1120.html

发表在 bash | 留下评论

基于谷歌动态口令的自动登录脚本

item2loginForGA.sh #!/usr/bin/expect set … 继续阅读

发表在 bash, 扒拉代码 | 留下评论

crontab精确到秒执行

#!/bin/bash #For excuting the scripts ev … 继续阅读

发表在 bash | 留下评论

sort用法

http://www.cnblogs.com/51linux/archive/2 … 继续阅读

发表在 bash | 留下评论

xargs命令用法

grep -lrn ‘Ltwen.com’ src/ | … 继续阅读

发表在 bash | 留下评论

touch创建文件为指定时间

格式 MMDDhhmm touch -t 10112200 new.txt 格式 … 继续阅读

发表在 bash | 留下评论

find根据时间查找

find ./ -type f -iname ‘*test*’ -exec ls … 继续阅读

发表在 bash | 留下评论

shell for 循环几种方式

t=(’1′ ’2′ ’3′ ’4′) #第一种 for v in ${t[@] … 继续阅读

发表在 bash | 留下评论

bash脚本打印时间段

#!/bin/sh beg_date=`date -d “$1″ +%s` en … 继续阅读

发表在 bash | 留下评论

top命令详解(转载)

简介 top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资 … 继续阅读

发表在 bash | 留下评论