From: Francois Fleuret Date: Tue, 12 May 2015 16:09:10 +0000 (+0200) Subject: Prune the cd history only if there was no error. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=commitdiff_plain;h=106d4dc2138483e208cb8955d6f6f32a7915839b Prune the cd history only if there was no error. --- diff --git a/bash-selector.sh b/bash-selector.sh index 7cb749c..dc7373b 100755 --- a/bash-selector.sh +++ b/bash-selector.sh @@ -72,8 +72,8 @@ function selector-cd () { if [[ -f "${SELECTOR_CD_HISTORY}" ]]; then TMP=$(mktemp /tmp/selector-cd.XXXXXX) - tail -$((SELECTOR_CD_HISTORY_SIZE-1)) < "${SELECTOR_CD_HISTORY}" > "${TMP}" - cat "${TMP}" > "${SELECTOR_CD_HISTORY}" + tail -$((SELECTOR_CD_HISTORY_SIZE-1)) < "${SELECTOR_CD_HISTORY}" > "${TMP}" && \ + cat "${TMP}" > "${SELECTOR_CD_HISTORY}" \rm -f "${TMP}" fi