This is a follow up to my previous question on Code Review. I did try to implement most of feedback provided by thiagoalessio. This is what my updated code looks like: #!/usr/bin/env bash RED=$ (tput setaf 1) GREEN=$ (tput setaf 2) RESET=$ (tput sgr0) is_symlink_dest_equal_to() { test “$ (readlink $ 1)” == “$ 2”; }Read more