7 lines
113 B
Bash
Executable file
7 lines
113 B
Bash
Executable file
#!/bin/bash
|
|
|
|
infile=${@: -1}
|
|
args=${@:1:${#}-1}
|
|
|
|
sed -e "s/<\\/dd>/<br\\/><br\\/><\\/dd>/g" $infile | w3m $args
|
|
|