February 23, 2012 | In: Nepotriedené
find pre pokrocilych
Pokročilé možnosti find ako viac typov suborov alebo exclude
keď chcete nájisť viac typov suborov a zapísať zoznam do suborov (php_files, js_files)
find ./ -type f \( -name \*.php -fprint php_files , -name \*.js -fprint js_files \)
nájdi “to” alebo “to” = teda vypíše php aj html fajly
find ./ -iname '*.php' -or -iname '*.html'
find . -type f \( -iname "*.c" -or -iname "*.asm" \)
najdi to alebo to a excludni svn = moc to zmysel nemá ale vidime ako sa robí exclude
find ./ -iname '*.php' -or -iname '*.html' -and ! -iname '.svn'
Comments are closed.