diff options
Diffstat (limited to 'debian/w3m.sh')
-rw-r--r-- | debian/w3m.sh | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/debian/w3m.sh b/debian/w3m.sh index bc9588d..7c9c47b 100644 --- a/debian/w3m.sh +++ b/debian/w3m.sh @@ -1,30 +1,8 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 1999 Fumitoshi UKAI <ukai@debian.or.jp> # Copyright (c) 1999 Jacobo Tarrio Barreiro <jtarrio@iname.com> # This program is covered by the GNU General Public License version 2 # -unset params - -while [ $# -gt 0 ] -do - case "$1" in - -t | -l | -T | -bookmark | -cols | -ppc | -o | -config) - params[${#params[@]}]="$1" - params[${#params[@]}]="$2" - shift ;; - -* | +* | *://*) - params[${#params[@]}]="$1" - ;; - *) - if [ -f "$1" -o -d "$1" ] - then - params[${#params[@]}]="$1" - else - params[${#params[@]}]="http://$1" - fi ;; - esac - shift -done ## for I18N variants, not yet: try w3mmee #W3M=${W3M:-/usr/bin/w3m-ssl-i18n} @@ -49,4 +27,5 @@ case X"$locale" in [ -x /usr/bin/w3m-ssl-en ] && W3M=/usr/bin/w3m-ssl-en ;; esac -exec $W3M "${params[@]}" +exec $W3M "$@" + |