3

変数を含むコマンドを実行したい場合は、常に最初に文字列を変数に格納してから実行する必要があります...

例:

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 に保存せずにこれを直接行うにはどうすればよいですか? 簡単なはずですが、解決策が見つかりませんでした...

4

1 に答える 1

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
于 2013-03-19T18:08:25.193 に答える