Created
February 5, 2013 14:16
-
-
Save honzajavorek/4714705 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/sh | |
DATE=`date '+%Y-%m-%d'` # dnesni datum | |
DIR="/tmp/stahovanky/$DATE" # cilova slozka | |
mkdir -p "$DIR" # kdyby nahodou slozka neexistovala, vytvorime ji | |
# stahujeme jak je libo | |
wget http://www.honzajavorek.cz/index.html -P "$DIR" | |
wget http://www.honzajavorek.cz/archives.html -P "$DIR" | |
# kdyby se cilove soubory jmenovaly stejne a chteli bychom jim dat ruzne nazvy, musime takto | |
wget http://www.seznam.cz/index.html -O "$DIR/seznam.html" | |
wget http://www.honzajavorek.cz/index.html -O "$DIR/honzajavorek.html" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment