Advertisement
moalex

bash-for-convert-example.sh

Nov 15th, 2018 (edited)
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.07 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for i in "*.png"
  4. do convert "$i" "${i%.*}.jpg"
  5. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement