Closed ussuri closed 9 years ago
@rginda: if LGTM, please land yourself or wait when I'm back from vacation.
cd -
history
history 10
history -c
cd exe
!123
echo "something !123, !123"
@rginda: ping. This should be pretty uncontroversial.
I'm not a fan of the bang parsing, I think we can do without that for now. The rest looks ok to me.
Ok, removed the bang parsing for now.
@rginda: if LGTM, please land yourself or wait when I'm back from vacation.
cd -
will cd to the previous directory, as in shell;history
will print history with indices, as in shell;history 10
will print 10 last commands;history -c
will clear the history;cd exe
,!123
will print "cd exe" and then execute it;echo "something !123, !123"
will print "something cd exe, cd exe".