aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/lhn.bash
blob: 89c6f5da39ba68ee800db65063c9548dd309cf88 (plain) (blame)
1
2
3
4
5
6
7
# 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]*}"
}