Linux Shell脚执行时不保存到临时变量

时间:2013-03-19 18:06:09

标签: linux bash

如果我想在其中执行包含变量的命令,我总是必须先将字符串存储在变量中,然后才能执行它...

示例:

path_fasta="/home/xxx/yyy/zzz/qqq/"
name_fasta="CTA_Mix_DNA.fna"
path_outp"/some/Path/"

temp='find . -maxdepth 1 -not -name '$name_fasta' -not -name letsgo.sh -delete'
$temp

temp=$path_mothur'mothur #set.dir(output='$path_outp');summary.seqs(fasta='$path_fasta''$name_fasta')'
$temp

如何直接直接将其存储在temp 中?一定很容易,但找不到解决方案......

1 个答案:

答案 0 :(得分:5)

而不是:

temp='find . -maxdepth 1 -not -name '$name_fasta' -not -name letsgo.sh -delete'
$temp

...只是使用:

find . -maxdepth 1 -not -name "$name_fasta" -not -name letsgo.sh -delete