shell 判断和修改文件
发布网友
发布时间:2022-08-23 11:24
我来回答
共1个回答
热心网友
时间:2024-11-13 09:49
#!/bin/bash
#os_debug 是8个字符。使用方法
#./test.sh filename
#多余的判断我没写,有什么需求可以考虑自己完善一下。
str1=$(sed -n '5s/^.*\(.\{8\}\)$/\1/p' $1)
if [ "$str1" != "os_debug" ];then
sed -i '5s/$/os_debug/g' $1
fi