簡易 rlwrap もどき
rlwrap や enhance もどきのシェルスクリプト。
readwrap #!/bin/bash HISTORY=history history -n $HISTORY while read -e i; do echo "$i" >> $HISTORY echo "$i" history -n $HISTORY done
使い方:
$ readwrap | gosh -i
gosh は標準入力が端末であるかを判定するので -i で対話モードにしなければならない。