9 lines
144 B
Bash
Executable file
9 lines
144 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
for i in *.raw; do
|
|
echo ": $i |> !tup_preserve |>"
|
|
echo ": $i |> cp %f %o |> %B.thumbnail"
|
|
done
|