diff options
author | Thomas White <taw@physics.org> | 2020-09-22 16:08:33 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-09-22 16:08:33 +0200 |
commit | 552e2cd29a802d288d74da5be286095d7f548665 (patch) | |
tree | 3357fc08415b78d7dbf0f6e8f44c4cc86d1b7fbe /scripts/random-image | |
parent | 188a08b4a11a78b399f34fe71073b5d69f043c8c (diff) |
Remove old scripts
Diffstat (limited to 'scripts/random-image')
-rwxr-xr-x | scripts/random-image | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/random-image b/scripts/random-image deleted file mode 100755 index cabd1e73..00000000 --- a/scripts/random-image +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -FILE=$1 -TEMPFILE=`mktemp $1.XXXXXX` - -trap "rm -f $TEMPFILE" EXIT -sort -R $FILE > $TEMPFILE - -for FILENAME in `cat $TEMPFILE`; do - - echo $FILENAME - hdfsee --int-boost=10 ${2}${FILENAME} - -done |