diff --git a/src/main/scripts/green_to_apha.sh b/src/main/scripts/green_to_apha.sh index 998c651..12c5e1f 100755 --- a/src/main/scripts/green_to_apha.sh +++ b/src/main/scripts/green_to_apha.sh @@ -1,3 +1,6 @@ #!/bin/bash -magick "$1" -transparent "#00ff00" "$1" \ No newline at end of file +for file in "$1"/*.png; do + echo "$file" + magick "$file" -transparent "#00ff00" "$file" +done \ No newline at end of file