Created
July 29, 2016 03:26
-
-
Save maxrp/b9d5d7306a8fb73e39b818ee21cd1076 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 | |
# Sets the date on a Veho VCC MUVI-PRO micro camera | |
# Usage: set_muvi_pro_date.sh /dev/sdb | |
mount "${1}" /mnt && | |
date +"%Y.%m.%d %H:%M:%S" > /mnt/time.txt && | |
umount /mnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment