# Current date
now=`date +%Y-%m-%d:%H:%M`
# Compress folder
tar czf "$now.tar.gz" dump/
does not work. No tar is created. But
tar czf someName.tar.gz dump/
works fine. Can someone point out the problem? It seems that
tar czf "$now.tar.gz" dump/
is not accepted as filename. Any ideas?
--force-local
flag help?