From 1403964743aff837b2c7f8ca03b39c3fd50f5019 Mon Sep 17 00:00:00 2001 From: nixpkgs-review Date: Thu, 5 Nov 2020 11:46:39 -0300 Subject: egrep -> grep -E --- scripts/apply-translations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/apply-translations.sh') diff --git a/scripts/apply-translations.sh b/scripts/apply-translations.sh index 875a968..8c9a6f5 100755 --- a/scripts/apply-translations.sh +++ b/scripts/apply-translations.sh @@ -3,7 +3,7 @@ set -Eeuo pipefail cd "$(dirname "${BASH_SOURCE[0]}")" cd ../ -for f in $(git ls-files | egrep '.(md|slides)$' | grep -v '^vendor/reveal.js$' | grep -v '^templates/'); do +for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$' | grep -v '^templates/'); do l="$(grep '^lang: ..$' "$f" | awk '{print $2}')" if [[ "$l" != 'en' ]]; then ref="$(grep '^ref: ' "$f" | awk '{print $2}')" -- cgit v1.2.3