같은 이름 이지 만 다른 접미사 파일 의 셸 스 크 립 트 코드 를 찾 습 니 다.
#!/bin/bash
#
if [ $# -ne 1 ];then
echo "Usage find_same.sh direcroty"
exit
fi
find $1 -type d > /tmp/dir.txt
#
#
while read dir
do
find $dir -maxdepth 1 -type f > /tmp/file.txt
#
awk -F '/' '{print $NF}' /tmp/file.txt | awk -F '[.]' '{print $1}'| sort | uniq -d > /tmp/filename.txt
# , /tmp/filename.txt
line=`wc -l /tmp/filename.txt | awk '{print $1}'`
# ,
#
echo "The directory $dir including same name file: "
if [ $line -ge 1 ] ; then
while read name
do
filename=`grep $name /tmp/file.txt`
echo "$filename"
echo $filename >> /tmp/samefile.txt
#
done < /tmp/filename.txt
fi
done < /tmp/dir.txt
아 날로 그 테스트:linux-8hij:/tmp/test # lltotal 4-rw-r--r-- 1 root root 0 Mar 9 02:04 1.png-rw-r--r-- 1 root root 0 Mar 9 02:04 1.txtdrwxr-xr-x 2 root root 4096 Mar 9 02:05 test1linux-8hij:/tmp/test/test1 # lltotal 0-rw-r--r-- 1 root root 0 Mar 9 02:05 11.jpg-rw-r--r-- 1 root root 0 Mar 9 02:05 11.log-rw-r--r-- 1 root root 0 Mar 9 02:05 2.log
실행 결과:
linux-8hij:/tmp # ./find_name.sh /tmpThe directory /tmp including same name file: The directory /tmp/.ICE-unix including same name file: The directory /tmp/.X11-unix including same name file: The directory /tmp/gconfd-root including same name file: The directory /tmp/gconfd-root/lock including same name file: The directory /tmp/gpg-PIEU09 including same name file: The directory /tmp/test including same name file: /tmp/test/1.txt/tmp/test/1.pngThe directory /tmp/test/test1 including same name file: /tmp/test/test1/11.jpg/tmp/test/test1/11.log
기록 보기:
linux-8hij:/tmp # cat /tmp/samefile.txt /tmp/test/1.txt /tmp/test/1.png/tmp/test/test1/11.jpg /tmp/test/test1/11.log
이 스 크 립 트 를 통 해 같은 이름 이지 만 다른 접미사 이름 을 찾 을 수 있 습 니 다.지정 한 파일 을 삭제 하 는 스 크 립 트 로 확장 할 수 있 습 니 다.실 용적 이 라 고 생각 합 니 다.공유 하 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
같은 이름 이지 만 다른 접미사 파일 의 셸 스 크 립 트 코드 를 찾 습 니 다.백 엔 드 에 입력 한 동료 때문에 파일 을 업로드 할 때 파일 에 같은 이름 을 지 었 지만 서로 다른 접미사 이름 은 파일 경로 가 매우 깊 고 약 10 층 정도 이 며 한 층 에 몇 십 개의 파일 이 있 기 때...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.