directory comparison 썸네일형 리스트형 두 디렉토리의 다른 파일 찾기 - Compare two directories in Linux 두 디렉토리의 어떤 파일들이 다른지 보고 싶을 경우, 보통diff -r dir1 dir2 이런식으로 사용하게 되는데, 이렇게 하면 설명이 장황하게 나옵니다.그래서 diff -r -q dir1 dir2 이렇게 사용하게 됩니다.다음 프로그램은 이와 유사한 기능을 하는 bash shell 프로그램입니다.diff 가 다른 파일은 differ 라고 메시지를 보여주는 대신 cmptree 는 different from 이렇게보여주네요. 별 차이는 없지만, shell programming을 공부하기에 좋은 코드 인 거 같습니다. #!/bin/bash## cmptree: compare directory trees recursively and report the differences.# Author: Ives Aerts .. 더보기 이전 1 다음