摘要:
当前时间 时间差 阅读全文
摘要:
【get】 【post】 阅读全文
摘要:
redis连接 阅读全文
摘要:
【读写txt文件】 r:只读 w:只写模式【不可读;不存在则创建;存在则清空内容】 w+:w+,写读【可读,可写】,消除文件内容,然后以读写方式打开文件。 阅读全文
摘要:
1、表达式 2、文件(夹) 阅读全文
摘要:
【符号】 【正则表达式】 阅读全文
摘要:
#!/bin/bash #获取cpu使用率 cpuUsage=`top -n 1 | awk -F '[ %]+' 'NR==3 {print $2}'` #获取磁盘使用率 data_name="/dev/sda1" diskUsage=`df -h | grep $data_name | awk -F '[ %]+' '{print $5}'` logFile=/apps/service/w... 阅读全文
摘要:
file1 > file2 file1 重定向到 file2,覆盖 file1 >> file2 file1 重定向到 file2,追加 file1 < file2 file1 从 file2 读取 阅读全文
摘要:
#!/bin/bash function send_mail(){ echo '报警' } function check(){ if [[ 2 -gt 1 ]];then send_mail fi } function main(){ check } main 阅读全文
摘要:
1、求 文件中某一列 平均值、最大值、最小值 阅读全文