如何在YAD按钮上运行其他bash脚本?

时间:2017-01-11 06:30:53

标签: yad

代码:

#!/bin/bash
# YAD GUI to the set of Shell Linux script

 frmdata=$(yad --title "Input SRA accession number" --form --field
"SRA ID")


 frmaddr=$(echo $frmdata | awk 'BEGIN {FS="|" } { print $1 }')


  echo $frmaddr > SRAIds.txt files=$(yad --width 100 --height 100
--title "Choose the action you want to be done" \
   --text="  Please enter what to do:" \
   --button="Download Files":"./fetch_sra_yad_zenity.sh"
\ #  calling the other bash script on the button click

   --button="Run alignment" \
   --button="Process variant calling" \
   --button="Cancel" \
   --on-top \
   --center \ )

ret=$?

[[ $ret -eq 1 ]] && exit 0

需要在相关按钮点击时运行.sh脚本,而不会消失按钮。如何解决? THX。

1 个答案:

答案 0 :(得分:0)

您的脚本应如下所示:

#!/bin/bash
# YAD GUI to the set of Shell Linux script

frmdata=$(yad --title "Input SRA accession number" /
--form --field "SRA ID")

frmaddr=$(echo $frmdata | awk 'BEGIN {FS="|" } { print $1 }')

echo $frmaddr > SRAIds.txt

files=$(yad --width 100 --height 100 \
--title "Choose the action you want to be done" \
--text="Please enter what to do:" \
--button="Download Files:bash -c ./fetch_sra_yad_zenity.sh" \ 
--button="Run alignment" \
--button="Process variant calling" \
--button="Cancel" \
--on-top \
--center)

ret=$?

[[ $ret -eq 1 ]] && exit 0

如您所见,我补充道:

bash -c

到您的脚本并运行命令。 更确切地说,这条线看起来应该是这样的:

--button='Download Files:bash - "./fetch_sra_yad_zenity.sh"'

这是因为有时您可能需要使用空格甚至某些命令来运行命令 - 因此它们必须使用引号。