diff options
| author | leochanj105 <leochanj@live.unc.edu> | 2021-10-25 00:03:41 -0400 |
|---|---|---|
| committer | leochanj105 <leochanj@live.unc.edu> | 2021-10-25 00:03:41 -0400 |
| commit | 65ea49f13da3e20c6e0a5c0a8a4432d6b61f7674 (patch) | |
| tree | 8d457d76f4c86149b30f6354c1540c83eb6cd7f5 /SD-VBS/benchmarks/rename.sh | |
| parent | 00e4ce40b0af8e94f5b5e44945d73c6778cc9991 (diff) | |
figure out why WCET was so high
Diffstat (limited to 'SD-VBS/benchmarks/rename.sh')
| -rw-r--r-- | SD-VBS/benchmarks/rename.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/SD-VBS/benchmarks/rename.sh b/SD-VBS/benchmarks/rename.sh new file mode 100644 index 0000000..c08dc7f --- /dev/null +++ b/SD-VBS/benchmarks/rename.sh | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | for entry in */data/*/; do | ||
| 3 | if ! [[ "$entry" == *"/qcif"* ]]; then | ||
| 4 | echo $entry | ||
| 5 | #echo $(dirname $entry) | ||
| 6 | #echo $(basename $entry) | ||
| 7 | sudo mv $entry $(dirname $entry)/.$(basename $entry) | ||
| 8 | fi | ||
| 9 | #echo $entry | ||
| 10 | done | ||
