aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/lhn.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/lhn.bash')
-rw-r--r--bash/bashrc.d/lhn.bash7
1 files changed, 0 insertions, 7 deletions
diff --git a/bash/bashrc.d/lhn.bash b/bash/bashrc.d/lhn.bash
deleted file mode 100644
index 89c6f5da..00000000
--- a/bash/bashrc.d/lhn.bash
+++ /dev/null
@@ -1,7 +0,0 @@
-# Print the history number of the last command
-lhn () {
- local last
- last=$(fc -l -1) || return
- [[ -n $last ]] || return
- printf '%u\n' "${last%%[^0-9]*}"
-}