Skip to content

Commit

Permalink
Adicionando script img_scale.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
cfbastarz committed Feb 21, 2024
1 parent a885d57 commit 055f41d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/img_scale.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#! /bin/bash

# Utilizar este script no diretório /pesq/share/das/dist/carlos.bastarz/oensMB09/aval/scantec

# @cfbastarz, 21/02/2024

for i in $(find . -name "SCORECARD*.png")
do

j=$(echo $i | sed "s,.png,_800x800.png,g")

echo "$i $j"
convert $i -resize 640000@ $j

done

exit 0

0 comments on commit 055f41d

Please sign in to comment.