Created
January 31, 2019 20:14
-
-
Save pmarkun/d1128ed94712c718ccd7802366760f12 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| API=API_KEY | |
| for i in *.jpg; do | |
| CMD="curl -H 'X-API-Key: ${API}' -F 'image_file=@$(pwd)/${i}' -f https://api.remove.bg/v1.0/removebg -o 'nobg_${i}.png'" | |
| $CMD | |
| done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment