All pastes #2107468 Raw Edit

Mine

public text v1 · immutable
#2107468 ·published 2012-01-29 16:18 UTC
rendered paste body
shopt -s nullglob

files=( $(zenity --entry --width=300 --title="enter filetype" --text="format : *.doc or *.mp3") )

if (( ${#files[@]} )); then
   for i in "${files[@]}"; do
      echo "$i"
   done
fi