Home
       io-xdg-open: add missing argument to xdg-open - iomenu - interactive terminal-based selection menu
  HTML git clone git://bitreich.org/iomenu git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/iomenu
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit 0e5ef4f8841cb9f0246d48efe84477ac72382b16
   DIR parent 543b9520b99f4c2f069139872fffe561eea5c4d3
  HTML Author: Josuah Demangeon <mail@josuah.net>
       Date:   Fri, 22 Jun 2018 14:11:28 +0200
       
       io-xdg-open: add missing argument to xdg-open
       
       Diffstat:
         M bin/io-xdg-open                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/bin/io-xdg-open b/bin/io-xdg-open
       @@ -26,5 +26,5 @@ rm "$HOME/.cache/$$"
        case $s in
        ('')        exit 1 ;;
        (*/)        exec "$0" "$(cd "$s" && pwd)" ;;
       -(*)        exec xdg-open ;;
       +(*)        exec xdg-open "$s" ;;
        esac