shell
chenpuo
这个作者很懒,什么都没留下…
展开
-
Shell中获取字符串长度的七种方法
求字符串操作在shell脚本中很常用,下面归纳、汇总了求字符串的几种可能方法:【方法一】:利用${#str}来获取字符串的长度【方法二】:利用awk的length方法备注:1) 最好用{}来放置变量2) 也可以用length($0)来统计文件中每行的长度【方法三】:利用awk的NF项来获取字符串长度备注: -F为分隔符,NF为域的个数,即单行字符串的长度【方法四】:利用wc的-L参数来获取字符串的长度备注: -L参数1) 对多行文件来说,表示打印最长行的长转载 2022-03-24 21:28:18 · 14826 阅读 · 0 评论 -
Linux Shell编程之条件判断与流程控制
转载自https://segmentfault.com/a/1190000011704345一、条件判断式语句1.1 按照文件类型进行判断两种判断格式:test -e /root/install.log [-e /root/install.log]//推荐1.2 按文件权限判断1.3 两个文件之间进行比较1.4 两个整数之间的比较...转载 2019-12-19 14:34:36 · 211 阅读 · 0 评论 -
shell 脚本之ping 命令同时打印时间
【for 循环】for i in $(seq 1 100); do date +%F-%H-%M.%N ping www.baidu.com -c 1done或者for ((i=0;i<100;i++));do date +%F-%H-%M.%N ping www.baidu.com -c 1done【wh...原创 2015-09-16 21:59:35 · 3259 阅读 · 0 评论 -
Shell中判断语句if中-z至-d的意思
转载自 https://www.cnblogs.com/ariclee/p/6137456.html Shell中判断语句if中-z至-d的意思[ -a FILE ] 如果 FILE 存在则为真。[ -b FILE ] 如果 FILE 存在且是一个块特殊文件则为真。[ -c FILE ] 如果 FILE 存在且是一个字特殊文件则为真。[ -d FILE ] 如果 FILE...转载 2018-08-30 11:24:40 · 247 阅读 · 0 评论 -
android 开机shell service + init.rc 介绍
1. init.rc 里添加服务service ips /system/bin/ips.sh user root group root disabled oneshot on property:sys.boot_completed=1 start ips或者service iptable /system/bin/ips.sh...原创 2017-09-21 16:50:16 · 700 阅读 · 0 评论 -
shell脚本-纵和文件查询wifi国家码
#!/bin/bash#get guojiama list var3=country var2=`grep $var3 db.txt > temp.txt`for line in `cat od.txt`doecho $linevar1=`grep -i $line 常用国家代码.txt | awk '{print $2}'`#get od country ,just th...原创 2016-01-25 15:28:42 · 912 阅读 · 0 评论 -
rx tx 速率统计
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <cutils/sockets.h>#include <ctype.h>#include <pthread.h>#include &a原创 2016-01-20 20:32:32 · 1780 阅读 · 0 评论