Remove use of seq in pactree

This is not a bash builtin, so can potentially cause portability issues.
Additionally, the use of it is completely unnecessary as it can all be done
within bash (and done faster).

$ time pactree xfwm4 >/dev/null (old version)
real	0m3.245s

$ time ./contrib/pactree xfwm4 >/dev/null (new version)
real	0m3.042s

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2010-10-07 15:50:29 -05:00
parent dff73a2a69
commit 1e0e5b2a02

View file

@ -130,9 +130,10 @@ _tree(){
# Generate the spacer
spacer=""
for each in $(seq 1 $spaces); do
for ((count = 0; count < spaces; count++)); do
spacer="$spacer$separator"
done
unset count
spacer="$spacer$branch_tip"
[ $silent -ne 1 ] && echo -e "$branch_color$spacer$leaf_color$pkg_name$provided"