我已经删除了旧问题,希望这个简化和更精确的版本能够工作。
我有一个文件:
#Works Command
cd /tmp
mkdir folder
echo "it worked" >file
cat file
#Not working Command
cd /tmp
mkdir file
echo "it didn't work" >wrong
cat wrong
可以少至 1 个命令分组和多达 20 个分组,但每个命令分组都以以"Command"结尾的注释为前缀
我希望完成的是将每个注释设置为一个变量,调用时将执行命令。
如果我回显 $var 1 的期望结果
cd /tmp
mkdir folder
echo "it worked" >file
cat file
我试过使用:
while read -r line; do var+=("$line"); done < <(awk '/Command/,/Command/' file)
将注释设置为变量,但我还没有找到命令分组的可行解决方案。
我试过使用:
for i in {1..5}
do
awk '/'"${var[$i]}"'/,/'"${var[$i+1]}"'/' file |egrep -vi "${var[$i]}|${var[$i+1]}"
done
希望这将有助于澄清事情。 我很抱歉在没有明确需要做什么的情况下发布问题。
您更新的问题听起来像是您需要非常小心的事情,但在这里 y'go(我更改了示例输入,因为我不想弄乱在/tmp
中创建文件!
$ cat file
#First Command
echo 'here is the date'
date +'%D'
#Second Command
echo 'here is the time'
date +'%T'
$ IFS=$'n' var=( $(awk -v RS= -v FS='n' -v OFS=';' '{for (i=2;i<=NF;i++) printf "%s%s", $i, (i<NF?OFS:ORS)}' file) )
$ echo "${var[0]}"
echo 'here is the date';date +'%D'
$ echo "${var[1]}"
echo 'here is the time';date +'%T'
$ eval "${var[0]}"
here is the date
05/07/15
$ eval "${var[1]}"
here is the time
11:42:51
您可以决定eval
、declare
或其他方式是否是执行命令的正确方法。