mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
12 lines
204 B
Bash
12 lines
204 B
Bash
#!/bin/sh
|
|
name=/mnt/screenshots/system
|
|
mkdir -p /mnt/screenshots
|
|
if [[ -e $name.png ]] ; then
|
|
i=1
|
|
while [[ -e $name-$i.png ]] ; do
|
|
let i++
|
|
done
|
|
name=$name-$i
|
|
fi
|
|
fbgrab "$name".png
|