commit c85a8e69a26667683bf070a755767242394df013 parent 862ad80579cbc6697d63ec7b637e0f449b96fb89 Author: sin <sin@2f30.org> Date: Tue, 1 Jul 2014 13:37:57 +0100 Dump filename to stdout so we can pipe it to xargs installpkg Diffstat:
M | fetchpkg | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/fetchpkg b/fetchpkg @@ -3,4 +3,5 @@ while read -r pkg; do filename=$(echo $(basename "$pkg") | sed 's/%23/#/') curl "$pkg" > "$filename" + echo "$filename" done