Skip to content

Instantly share code, notes, and snippets.

@ozuma
Created January 13, 2021 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozuma/e88690f206e3e43a96ffc2e807f44b5a to your computer and use it in GitHub Desktop.
Save ozuma/e88690f206e3e43a96ffc2e807f44b5a to your computer and use it in GitHub Desktop.
Cut Header of Screenshot by Huawei P-10 Lite
#!/bin/sh
for filename in *.png
do
convert "${filename}" -crop 1080x1850+0+70 "s-${filename}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment