* [mdk-re] Квотинг параметров
@ 2002-02-17 17:49 Andrey Brindeew
2002-02-17 18:13 ` Sergey Vlasov
0 siblings, 1 reply; 2+ messages in thread
From: Andrey Brindeew @ 2002-02-17 17:49 UTC (permalink / raw)
To: ALTLinux Mailing List
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
Hi!
Задумал тут при переписывании файлов с CD снять у них атрибут "исполняемый".
Есессно, нужно не трогать каталоги. Сразу родилась следующая команда:
chmod a-x $(find ./ -type f)
Что меня подвело? Файлы с пробелами в имени. Не подскажет ли многоуважаемый
All, как "сквотировать" имена файлов из вывода find?
--
WBR, Andrey Brindeew.
"No one person can understand Perl culture completely"
(C) Larry Wall.
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [mdk-re] Квотинг параметров
2002-02-17 17:49 [mdk-re] Квотинг параметров Andrey Brindeew
@ 2002-02-17 18:13 ` Sergey Vlasov
0 siblings, 0 replies; 2+ messages in thread
From: Sergey Vlasov @ 2002-02-17 18:13 UTC (permalink / raw)
To: mandrake-russian
On Sun, 17 Feb 2002 15:28:41 +0300
Andrey Brindeew <linux@abr.x9.ru> wrote:
> Задумал тут при переписывании файлов с CD снять у них атрибут "исполняемый".
> Есессно, нужно не трогать каталоги. Сразу родилась следующая команда:
>
> chmod a-x $(find ./ -type f)
>
> Что меня подвело? Файлы с пробелами в имени. Не подскажет ли многоуважаемый
> All, как "сквотировать" имена файлов из вывода find?
Способ 1 (только для GNU-утилит):
find . -type f -print0 | xargs -0 chmod a-x
Способ 2 (POSIX, но медленно - fork по каждому файлу):
find . -type f -exec chmod a-x \{\} \;
В новом стандарте IEEE Std 1003.1-2001 для find есть еще "-exec
<command> <args...> {} +", но GNU find это пока не умеет.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-02-17 18:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-17 17:49 [mdk-re] Квотинг параметров Andrey Brindeew
2002-02-17 18:13 ` Sergey Vlasov
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git