aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-06-07 21:04:50 -0400
committertdro <tdro@users.noreply.github.com>2020-06-07 21:04:50 -0400
commit1dfa5641fcfb659ac3fdfa4eddb81fa673454567 (patch)
tree8a85de822467029f742496f945bea5c25796be49 /.bashrc
parent90bf176a6b245118bab1931a35112526dbcfd7a5 (diff)
downloaddotfiles-1dfa5641fcfb659ac3fdfa4eddb81fa673454567.tar.gz
dotfiles-1dfa5641fcfb659ac3fdfa4eddb81fa673454567.tar.bz2
dotfiles-1dfa5641fcfb659ac3fdfa4eddb81fa673454567.zip
.bashrc: sponge is back
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index aa6f022..58b4ead 100644
--- a/.bashrc
+++ b/.bashrc
@@ -112,7 +112,7 @@ lxc-destroy() { for container in "$@"; do $(type -P lxc-destroy) -n "$container"
[ -f "$HOME/.config/fzf-marks/fzf-marks.plugin.bash" ] && . "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"
# remove bash history duplicates
-history-remove-duplicates() { awk '!visited[$0]++' "$HOME/.bash_history" > /tmp/.bash_history.tmp && mv -f /tmp/.bash_history.tmp "$HOME/.bash_history"; }
+history-remove-duplicates() { awk '!visited[$0]++' "$HOME/.bash_history" | sponge "$HOME/.bash_history"; }
# extract docker container as rootfs
docker-rootfs() { id=$(docker run -d "$1" /bin/true) && docker export "$id" -o "$2.tar" && docker container rm "$id"; }