- #!/usr/bin/env bash
- set -euo pipefail
- IFS=$'\n\t'
- # Display a list of software versions dotfiles is interested in.
- echo "Installed:"
- command -v git >/dev/null && git version || true
- command -v bash >/dev/null && bash --version | head -n 1 || true
- command -v zsh >/dev/null && zsh --version || true
- command -v tmux >/dev/null && tmux -V || true
- command -v vim >/dev/null && vim --version | head -n 1 || true
- command -v nvim >/dev/null && nvim -v | head -n 1 || true
- command -v ag >/dev/null && ag --version | head -n 1 || true
- command -v pandoc >/dev/null && pandoc -v | head -n 1 || true
- command -v pandoc-citeproc >/dev/null && pandoc-citeproc -V | head -n 1 || true
|