insere a variável $ duration dentro de outra linha de código em um arquivo sh

3

Eu descobri o byzanz-record que pode gravar sua área de trabalho e obter o resultado como um gif, flash ou outro, eu quero fazer uma GUI para uso pessoal, mas parece que não consigo trabalhar até agora. só tem isso

#!/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

como você pode ver, eu quero inserir as variáveis duration, x, y, with, height e name após o sinal '=' no comando na parte inferior, ( OPTIONAL ) se puder , você pode me dizer como colocar as múltiplas janelas em um formulário que eu tenho yad e zenity

    
por Froylan Benitez 10.03.2013 / 17:29

1 resposta

0

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"
    
por Julio N 24.11.2017 / 20:41

Tags