我希望在 file1 中的 abc_def_APP 和 application1.war 字符串之间替换 new_version 变量(13.2.0/8)的内容
脚本 :
#!/bin/ksh
new_version="13.0.5/8"
old_version=($(grep -r "location=.*application1.war" /path/file1| awk '{print ($1)}'| cut -f8- -d"/"|sed 's/.\{1\}$//'))
echo "$old_version" 'This gives me version number from file1 which needs to be replaced(13.2.0/9)
文件 1 内容:
location="cc://view/blah/blah/blah/abc_def_APP/13.2.0/9/application1.war"