mirror of
https://github.com/jorgevasquezp/yorchnet_scripts.git
synced 2026-08-16 15:31:10 +00:00
12 lines
170 B
Plaintext
Executable File
12 lines
170 B
Plaintext
Executable File
test(){
|
|
local f=$1
|
|
local result=file "$f"
|
|
return result
|
|
}
|
|
for i;
|
|
do
|
|
find "$i" -iname "._*" -exec test "{}" \;;
|
|
find "$i" -iname ".DS*" -exec test "{}" \;;
|
|
done
|
|
|