#!/bin/sh if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then cat <=/g' \ -e 's/[±]/+\/-/g' \ -e 's/[≠]/!=/g' \ -e 's/[⋅]/./g' \ -e 's/[×]/x/g' \ -e 's/[÷]/\//g' \ -e 's/[↓]/|/g' \ -e 's/[↑]/^/g' \ -e 's/[←]/<=/g' \ -e 's/[→]/=>/g' \ "$@" } if [ $# -ge 1 ]; then for i; do _asciify "$i" done else _asciify fi