gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 11:49:43 24 4
gpt4 key购买 nike

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

例子:

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 中直接执行此操作?一定很容易,但没有找到解决方案...

最佳答案

代替:

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

关于Linux Shell脚本执行而不保存到临时变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15507168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com