파일을 백업해야하며, 쉽게 구분할 수 있도록 이름의 일부로 타임 스탬프를 갖고 싶습니다.
현재 날짜를 복사 명령에 어떻게 삽입 하시겠습니까?
[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