OS & Program/Linux
find 명령어를 이용해서 특정 파일보다 최근에 수정된 파일 목록을 구하는 예제
nabiro@gmail.com
2013. 4. 23. 10:47
/*
* 문서번호: 201304231048
* 검색어: nabiro, find, date, 날짜, newer, file, 파일, 특정 날짜, 최신
*/
touch -t `date +%m%d0000` /tmp/$$
find /tmefndr/oravl01 -type f -newer /tmp/$$
rm /tmp/$$