fmt - localbin - leot's localbin (~/bin)
(HTM) hg clone https://bitbucket.org/iamleot/localbin
(DIR) Log
(DIR) Files
(DIR) Refs
---
fmt
---
1 #!/bin/sh
2
3 #
4 # Invoke heirloom-fmt if available, falling back to base one.
5 #
6
7 if [ -x /usr/pkg/heirloom/bin/fmt ]; then
8 exec /usr/pkg/heirloom/bin/fmt "$@"
9 fi
10
11 exec /usr/bin/fmt "$@"