How to archive the `media` folder of Magento 1?

tar \
	--exclude='*.gz' \
	--exclude='*.mov' \
	--exclude='*.mp4' \
	--exclude='*.ogv' \
	--exclude='*.pdf' \
	--exclude='*.tgz' \
	--exclude='*.webm' \
	--exclude='*.zip' \
	--exclude='./catalog/product/cache' \
	--exclude='./css_secure' \
	--exclude='./js' \
	--exclude='./tmp' \
	--exclude='./upslabelinv' \
	-zcvf ~/${PWD##*/}-$(date '+%Y-%m-%d-%H-%M').tgz .

See also:

Cleanup

Archiving