12 lines
226 B
Bash
Executable File
12 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
# author : bachir soussi chiadmi
|
|
# date : 10/06/2016
|
|
|
|
if [ ! -d "~/hehe-rover-pictures" ]; then
|
|
mkdir ~/hehe-rover-pictures
|
|
fi
|
|
|
|
date=date +"%Y-%m-%d"
|
|
|
|
/opt/vc/raspistill -q 100 -o "~/hehe-rover-pictures/$date.jpg"
|