aboutsummaryrefslogtreecommitdiff
path: root/files/imv-folder
blob: 151fc5130120daf352966aea0c0d6817ccc766fb (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
image="$1"
declare -a ARGS
for a in "$(dirname "$image")"/*; do
	if [ -f "$a" ]; then
		ARGS+=("$a")
	fi
done
exec imv "${ARGS[@]}" -n "$image"