Ver Fonte

Fix bat/cat compat

Simon Watson há 3 anos atrás
pai
commit
eed02b6548
1 ficheiros alterados com 2 adições e 1 exclusões
  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)