Skip to content

Instantly share code, notes, and snippets.

@asid21
Created December 8, 2017 16:24
Show Gist options
  • Select an option

  • Save asid21/af5485de3a8e093f39ba3e7f83e6ec6c to your computer and use it in GitHub Desktop.

Select an option

Save asid21/af5485de3a8e093f39ba3e7f83e6ec6c to your computer and use it in GitHub Desktop.
Get LINE stamps image
#!/bin/sh
j=0
mkdir stamps
for i in $(ls /sdcard/Android/data/jp.naver.line.android/stickers)
do
cp $i stamps/$j.jpeg
j=$(expr $j + 1)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment