UNPKG

267 BPlain TextView Raw
1#/bin/bash
2
3export DISPLAY='$DISPLAY'
4
5IFS='"'?'"' read -ra url <<< "$1"
6count=${#url[@]}
7
8for index in "${!url[@]}"; do
9
10 xdotool type "${url[$index]}"
11
12 next=$[index+1]
13 if [ "$count" -eq "$next" ] ; then
14 break
15 fi
16
17 xdotool key question
18done