aboutsummaryrefslogtreecommitdiffstats
path: root/Bonus/wrap3m
blob: 9555c9af81050128097717f4b7064ce3593c1be5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

HOMEPAGE=http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/
OPT=""
URL=""
for i in $@
do
  case $i in
  -*) 
    OPT="$OPT $i"
    ;;
  *)
    URL="$URL $i"
    ;;
  esac
done

if [ -z "$URL" ]; then
  URL=$HOMEPAGE
fi
URLARG=""
for u in $URL
do
  if [ `expr $u : '[a-z][a-z]*://'` -gt 0 ]; then
    URLARG="$URLARG $u"
  elif [ -f $u -o -d $u ]; then
    URLARG="$URLARG $u"
  else
    URLARG="$URLARG http://$u"
  fi
done

w3m $OPTS $URLARG