From 7ef931f898aebfe1f0219bed2bf5128d8b25f74b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 13 Nov 2020 16:17:06 +1300 Subject: Use inline integers rather than bit shifting Syntax highlighting doesn't deal with it well --- bash/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bash/bashrc') diff --git a/bash/bashrc b/bash/bashrc index 6e4c31a9..a60a047e 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -29,7 +29,7 @@ fi unset -f command_not_found_handle # Keep around 32K lines of history in file -HISTFILESIZE=$((1 << 15)) +HISTFILESIZE=32768 # Ignore duplicate commands HISTCONTROL=ignoredups -- cgit v1.2.3