From 6e93a6cb7f3be420d47b0706767d220213944053 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Thu, 17 Oct 2019 14:00:51 +0100 Subject: [PATCH] If we have fdfind, alias 'fd' to it --- bashrc.d/aliases.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc.d/aliases.bash b/bashrc.d/aliases.bash index f54be7e..61d53eb 100644 --- a/bashrc.d/aliases.bash +++ b/bashrc.d/aliases.bash @@ -42,3 +42,7 @@ if [ "$TERM" == "xterm-256color" ] ; then fi alias log='git log --color --graph --pretty=format:'\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit' alias coot="cd ~/src/cooter_umbrella/" + +if [ -x /usr/bin/fdfind ] ; then + alias fd=fdfind +fi