1 2 3 4 5
#!/bin/sh file=~/clone/dotfiles/web browser=firefox url=`cat $file | dmenu -l 8` if [ -n "$url" ] ; then $browser $url ; fi