From e19531d25245256e731963cc02b008b7f71ebdd5 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 9 Oct 2008 10:30:51 +0200 Subject: pkglist: Use zsh features te replace fgrep and cut --- bin/pkg | 2 +- include/pkglist | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/pkg b/bin/pkg index ab4c5f9..119114c 100755 --- a/bin/pkg +++ b/bin/pkg @@ -144,7 +144,7 @@ progress () { vcs_to_list () { if [[ -d $1/.git ]] { echo -n "$1 git " - git --git-dir=$1/.git log -n 1 | fgrep commit | cut -d ' ' -f 2 + echo ${$(git --git-dir=$1/.git log -n 1)[2]} } else { warn "Unsupported or no repository: $1\n" } diff --git a/include/pkglist b/include/pkglist index a727587..5ae2db5 100755 --- a/include/pkglist +++ b/include/pkglist @@ -13,10 +13,10 @@ for i in *(/,@); { if [[ -d $i/.git ]] { if (( newmode )) { echo -n "$i git " - git --git-dir=$i/.git log -n 1 | fgrep commit | cut -d ' ' -f 2 + echo ${$(git --git-dir=$i/.git log -n 1)[2]} } else { echo -n "$i git " >> .list - git --git-dir=$i/.git log -n 1 | fgrep commit | cut -d ' ' -f 2 >> .list + echo ${$(git --git-dir=$i/.git log -n 1)[2]} >> .list } } else { echo "$i: Unsupported or no repository" >&2 -- cgit v1.2.3