Shell关于sed命令的简单使用--读文件和写文件的某一行

DEFMAC=cat /sys/class/net/eth1/address
STR=sudo sed -n '29p' /etc/sysconfig/ethercat //读取文件的第29行
if [ -z “KaTeX parse error: Can't use function '\"' in math mode at position 53: …MASTER0_DEVICE=\̲"̲DEFMAC”" /etc/sysconfig/ethercat
fi

then sudo sed -i “29i MASTER0_DEVICE=”$DEFMAC"" /etc/sysconfig/ethercat //往文件的第29行写入MASTER0_DEVICE=mac(eth1)

你可能感兴趣的:(shell)