-
Notifications
You must be signed in to change notification settings - Fork 7
find
andyceo edited this page Aug 30, 2025
·
3 revisions
Страница документации и полезных сниппетов для утилиты find
.
-
найти все файлы вида
RLE-*.json
:find . -name 'RLE-*.json' -type f
-
переименовать все найденные файлы вида
RLE-*.json
вRLTE-*.json
:find . -name 'RLE-*.json' -type f -exec sh -c 'mv "{}" `echo "{}" | sed "s/RLE-/RLTE-/g"`' \;
-
глобальный поиск и замена в файлах в текущей директории:
find -type f -exec sed -i -e 's/search/replace/g' {} \;
-
найти битые симлинки (источник):
find . -xtype l # GNU implementation of find find . -type l ! -exec test -e {} \; -print # portable solution
Footer is under construction
Sidebar is under construction