Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Because

    file="~/.gitshots/$(date).jpg"
    echo "Taking capture into ${file}!"
    imagesnap -q -w 3 $file
is so arcane.


Even better (the silence principle):

    #!/bin/sh
    imagesnap -q -w 3 "~/.gitshots/$(date).jpg"
(date(1) with spaces will be fine due to the double quotes, although it won't be in date order when sorted by name, which would annoy me...)


No, the options when you need to add something more are arcane.

Plus the above wont even work as is, since $(date) contains spaces.


> Plus the above wont even work as is, since $(date) contains spaces.

This would be "more direct" part.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: