在 sh 文件中的另一行代码中插入 $duration 变量

在 sh 文件中的另一行代码中插入 $duration 变量

我发现了 byzanz-record,它可以录制你的桌面并将结果作为 gif、flash 或其他格式,我想制作一个 GUI 供个人使用,但我似乎无法让它工作,直到现在我只有这个

#!/bin/bash
duration=$(yad --title "duration" --entry --text "please enter the duration in seconds")
x=$(yad --title "x possition" --entry --text "please enter the x posittion")
y=$(yad --title "y possition" --entry --text "please enter the y posittion")
with=$(yad --title "with" --entry --text "please enter the with")
height=$(yad --title "height" --entry --text "please enter the height")
name=$(yad --title "name" --entry --text "please enter the name or path for the file without the extension")


byzanz-record --duration=$echo $duration --x='$(echo $x)' --y='$(echo $y)' --width='$(echo $with)' --height='$(echo $height)' '$(echo $name)'.gif

正如你所见,我想在底部的命令中的“=”符号后输入变量duration、x、y、with、height 和 name,(选修的)如果可以的话,你能告诉我如何把多个窗口放在一个表单中吗?我有 yad 和 zenity

答案1

All=$(yad --form --columns 2 --text "Please fill the form" \
    --field 'Duration' ''  --field "Y position" ''         \
    --field Height '' --field "X position" ''              \
    --field With '' --field Name '')
IFS=\| read Duration Y Height X With Name <<< "$All"
byzanz-record --duration="$Duration" --x="$X" --y="$Y" --width="$With" --height="$Height" "$Name.gif"

相关内容