You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
11 years ago
|
#!/bin/bash
|
||
|
while [ 1 ];
|
||
|
do
|
||
|
imagesnap - | convert - -resize "50%" jpeg:- | ssh dustinswan@dustinswan.org "cat > /srv/http/dustinswan.org/dustin.jpg"
|
||
|
sleep 10;
|
||
|
done
|
||
|
|