aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-06-16 21:23:35 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-06-16 21:23:35 -0300
commit7fbe371049472b766fd2ee3306072c9c4e0aaf07 (patch)
tree9c4200f379e384e237121528bcfb9bdbc42cfbb3 /lib
parenta62bb9bb190df115327d85e0f24b418ee10f4785 (diff)
downloadkeyringer-7fbe371049472b766fd2ee3306072c9c4e0aaf07.tar.gz
keyringer-7fbe371049472b766fd2ee3306072c9c4e0aaf07.tar.bz2
Adds history support at shell action
Diffstat (limited to 'lib')
-rwxr-xr-xlib/keyringer/actions/shell2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/keyringer/actions/shell b/lib/keyringer/actions/shell
index 3b98d68..d87a638 100755
--- a/lib/keyringer/actions/shell
+++ b/lib/keyringer/actions/shell
@@ -15,6 +15,8 @@ keyringer_usage $KEYRING
# While a "quit" command isn't entered, read STDIN
while read -rep "keyringer:/${KEYRING}${SHELLPATH}> " STDIN; do
+ history -s "$STDIN"
+
if [ "$STDIN" == "quit" ] || [ "$STDIN" == "exit" ] || [ "$STDIN" == "bye" ]; then
break
elif [ "$STDIN" == "shell" ]; then