下面是我使用的shell脚本中的代码
sed 's/xyxx/$date1/' /u001/Scripts/abc.html > /u001/Scripts/abc.html
代码试图在AWK命令中打印HTML标记
nawk 'BEGIN{
FS=","
print """""Hi All,
There are no cases closed on the"
print "xyxx that meet the criteria for submissi
我有一个文本文件(file.txt),在该文本文件中,必须执行命令的所有文件的路径。如何在for循环中迭代并在文本文件的每个路径上执行文件上的命令?我试过这样做:
#!/bin/sh
LOC=pathto the file
for f in $LOC;
do
sed -i '1i\10004' $f;
done