#!/bin/sh
# time how long a single untar of glibc-2.29 takes

cd /tmp
test -f glibc-2.29.tar.xz || echo "copying"
test -f glibc-2.29.tar.xz || cp -a /sources/glibc-2.29.tar.xz .

echo "extract"
time tar -xf glibc-2.29.tar.xz

rm -rf glibc-2.29

