diff options
author | Karl Berry <karl@freefriends.org> | 2019-04-08 17:04:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-04-08 17:04:37 +0000 |
commit | 343b184d6b8e0c28959e410915ba6cb746c30460 (patch) | |
tree | 7b261537989b3ac8e70f6bcfecda19ff97fb8a69 /Master/tlpkg/bin/tlpkg-by-size | |
parent | 0626386cae41509558a794c6b226ea820306105f (diff) |
2019 source archives and go to CTAN for final build
git-svn-id: svn://tug.org/texlive/trunk@50864 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpkg-by-size')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-by-size | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tlpkg-by-size b/Master/tlpkg/bin/tlpkg-by-size index cd252bbd672..3712c747323 100755 --- a/Master/tlpkg/bin/tlpkg-by-size +++ b/Master/tlpkg/bin/tlpkg-by-size @@ -7,7 +7,8 @@ test $# -eq 0 && set - /home/ftp/texlive/tlnet/archive cd "$1" || exit 1 for pkgtar in `ls *.tar.xz | egrep -v '\..*\.tar\.xz$'`; do pkg=`echo $pkgtar | sed 's/\.tar\.xz$//'` - size=`cat $pkg.*tar.xz | wc -c` + #size=`cat $pkg.*tar.xz | wc -c` # includes binaries + #size=`cat $pkg.tar.xz $pkg.doc.tar.xz $pkg.source.tar.xz 2>/dev/null | wc -c` size=`expr $size / 1024` printf "%6d %s\n" $size "$pkg" -done | sort -nr +done | sort -nr | tee /tmp/tlpsz |