This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Script sh para cambiar nombre por numeros masivamente | |
| #!/bin/sh | |
| for img in `ls *.jpg` | |
| do | |
| echo $img | |
| nombre=$[$nombre+1] | |
| mv $img $nombre.jpg | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##Script para redimesionar imagenes de forma masiva y dejarles calidad en 70 % | |
| #!/bin/sh | |
| for img in `ls *.jpg` | |
| do | |
| echo $img | |
| mogrify -resize 800x -compress jpeg -quality 70 $img | |
| done |
NewerOlder