Devo fare un backup di un file e vorrei avere un timestamp come parte del nome per facilitare la differenziazione.
Come inseriresti la data corrente in un comando di copia?
[root@mongo-test3 ~]# cp foo.txt {,.backup.`date`}
cp: target `2013}' is not a directory
[root@mongo-test3 ~]# cp foo.txt {,.backup. $((date)) }
cp: target `}' is not a directory
[root@mongo-test3 ~]# cp foo.txt foo.backup.`date`
cp: target `2013' is not a directory