Browse Source

Fix bat/cat compat

Simon Watson 3 years ago
parent
commit
eed02b6548
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bashrc/bashrc-all

+ 2 - 1
bashrc/bashrc-all

@@ -7,8 +7,9 @@ fi
 # Cargo config
 [ -f ~/.cargo ] && source "$HOME/.cargo/env"
 
+CAT_PATH=$(which cat --skip-alias)
 if [ -f ~/.cache/wal/sequences ]; then
-    cat ~/.cache/wal/sequences
+    $CAT_PATH ~/.cache/wal/sequences
 fi
 
 export EDITOR=$(which vim)