From 0c810022201c1eda8c5b4dc9e10c04172344eeb4 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Thu, 1 May 2014 13:08:25 +0900 Subject: [PATCH] Prefer gawk over awk if both are available. --- libexec/pyenv-help | 2 +- libexec/pyenv-version-file-read | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/pyenv-help b/libexec/pyenv-help index 9b7f7e4a..b5b49c06 100755 --- a/libexec/pyenv-help +++ b/libexec/pyenv-help @@ -36,7 +36,7 @@ extract_initial_comment_block() { } collect_documentation() { - awk ' + $(type -p gawk awk | head -1) ' /^Summary:/ { summary = substr($0, 10) next diff --git a/libexec/pyenv-version-file-read b/libexec/pyenv-version-file-read index 64d7f76e..24dc3c63 100755 --- a/libexec/pyenv-version-file-read +++ b/libexec/pyenv-version-file-read @@ -9,7 +9,7 @@ if [ -e "$VERSION_FILE" ]; then # Read the first non-whitespace word from the specified version file. # Be careful not to load it whole in case there's something crazy in it. IFS="${IFS}"$'\r' - words=( $(cut -b 1-1024 "$VERSION_FILE" | awk '{ print($1) }') ) + words=( $(cut -b 1-1024 "$VERSION_FILE" | $(type -p gawk awk | head -1) '{ print($1) }') ) versions=("${words[@]}") if [ -n "$versions" ]; then