[ubuntu] bash set -o vi question
This has been one of my biggest complaints with bash's vi mode. Back when I used ksh, if you would enter edit mode and edit the command with vi, if it was a multiple line command, the line breaks would appear. In bash, they don't. For example:
Code:
---------
for i in `ls -1`
do
echo $i...
|