aboutsummaryrefslogtreecommitdiff
path: root/profiling/tar-extract.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-09-10 11:51:41 +0200
committerJakob Unterwurzacher2021-09-10 11:51:41 +0200
commitc50d67f1039b8db90de441a3907994adb21668e8 (patch)
tree13ac1e4fca717d0e1d1506bf080b1b1f49ba68e4 /profiling/tar-extract.bash
parentad21647f250697d88eade461c08073732d2cf7e0 (diff)
profiling: accept parameters & show actual command lines
Diffstat (limited to 'profiling/tar-extract.bash')
-rwxr-xr-xprofiling/tar-extract.bash6
1 files changed, 4 insertions, 2 deletions
diff --git a/profiling/tar-extract.bash b/profiling/tar-extract.bash
index 25f99a6..f176368 100755
--- a/profiling/tar-extract.bash
+++ b/profiling/tar-extract.bash
@@ -8,9 +8,11 @@ cd "$(dirname "$0")"
T=$(mktemp -d)
mkdir "$T/a" "$T/b"
-../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a"
+set -x
+../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$@" "$T/a"
../gocryptfs -quiet -extpass "echo test" -cpuprofile "$T/cprof" -memprofile "$T/mprof" \
- "$T/a" "$T/b"
+ "$@" "$T/a" "$T/b"
+{ set +x ; } 2> /dev/null
# Cleanup trap
trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT