find . -type f -print
인쇄
./file1
./file2
./file3
인쇄 할 수있는 방법
file1
file2
file3
?
단일 파일에 대해서만 수행하는 경우 :
—
masterxilo
f=`find . -name migration`; echo ${f/.\//}
-exec /path/to/myscript.sh {}
당신에find
의는-printf '%P\n'
작동하지 않습니다. 대신,./
스크립트 에서 접두사 접두사 를 다음과 같이 수행해야합니다 .p=${1#"./"}