ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [mdk-re] Recursive chmod
@ 2002-02-11 22:56 Lenya L. Khachaturov
  2002-02-11 23:01 ` Peter V. Saveliev
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Lenya L. Khachaturov @ 2002-02-11 22:56 UTC (permalink / raw)
  To: mandrake-russian

[-- Attachment #1: Type: text/plain, Size: 237 bytes --]

Здравствуйте,

Нужно убрать у всех файлов на разделе аттрибут x, проблема в 
том что если просто сказать chmod -R -x *, x пропадет и у каталогов
Можно ли сделать то, что я хочу?

-- 
Leonid Khachaturov
mailto:lenya@chemsell.yaroslavl.ru

[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [mdk-re] Recursive chmod
  2002-02-11 22:56 [mdk-re] Recursive chmod Lenya L. Khachaturov
@ 2002-02-11 23:01 ` Peter V. Saveliev
  2002-02-11 23:06 ` Alexander Kubatkin
  2002-02-12 11:27 ` cornet
  2 siblings, 0 replies; 4+ messages in thread
From: Peter V. Saveliev @ 2002-02-11 23:01 UTC (permalink / raw)
  To: mandrake-russian

On Mon, 11 Feb 2002 23:03:40 +0300
"Lenya L. Khachaturov" <lenya@chemsell.yaroslavl.ru> wrote:

> Здравствуйте,
> 
> Нужно убрать у всех файлов на разделе аттрибут x, проблема в 
> том что если просто сказать chmod -R -x *, x пропадет и у каталогов
> Можно ли сделать то, что я хочу?

find . -type f -print0 | xargs -0 chmod <нужная комбинация аттрибутов>

Пойдет?
Петр.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [mdk-re] Recursive chmod
  2002-02-11 22:56 [mdk-re] Recursive chmod Lenya L. Khachaturov
  2002-02-11 23:01 ` Peter V. Saveliev
@ 2002-02-11 23:06 ` Alexander Kubatkin
  2002-02-12 11:27 ` cornet
  2 siblings, 0 replies; 4+ messages in thread
From: Alexander Kubatkin @ 2002-02-11 23:06 UTC (permalink / raw)
  To: mandrake-russian

On Mon, 11 Feb 2002 23:03:40 +0300
"Lenya L. Khachaturov" <lenya@chemsell.yaroslavl.ru> wrote:

> Здравствуйте,
> 
> Нужно убрать у всех файлов на разделе аттрибут x, проблема в 
> том что если просто сказать chmod -R -x *, x пропадет и у каталогов
> Можно ли сделать то, что я хочу?


chmod -cR ugo+X /path/to/

u - user
g - group
o - other

-c - подробный вывод
-R - рекурсия
+X только на каталоги... т.е. можно сделать chmod 644(rw-r--r--), а потом +X и получишь на каталогах X.

> 
> -- 
> Leonid Khachaturov
> mailto:lenya@chemsell.yaroslavl.ru
> 



__________________________________________________________
Alexander Kubatkin  



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [mdk-re] Recursive chmod
  2002-02-11 22:56 [mdk-re] Recursive chmod Lenya L. Khachaturov
  2002-02-11 23:01 ` Peter V. Saveliev
  2002-02-11 23:06 ` Alexander Kubatkin
@ 2002-02-12 11:27 ` cornet
  2 siblings, 0 replies; 4+ messages in thread
From: cornet @ 2002-02-12 11:27 UTC (permalink / raw)
  To: mandrake-russian

"Lenya L. Khachaturov" wrote:
> 
> Здравствуйте,
> 
> Нужно убрать у всех файлов на разделе аттрибут x, проблема в
> том что если просто сказать chmod -R -x *, x пропадет и у каталогов
> Можно ли сделать то, что я хочу?

Помнится в рассылке публиковалась пара строк для таких случаев за авторством
Alexey Voinov <voins@voins.program.ru>

$ find <dir> -type d -exec chmod <dirmode> '{}' ';'
$ find <dir> -type f -exec chmod <filemode> '{}' ';'

первая для каталогов, вторая для файлов.

-- 
Власенко Олег.
Отдел технической поддержки ALT Linux Team.
mailto:cornet@altlinux.ru



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-02-12 11:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-11 22:56 [mdk-re] Recursive chmod Lenya L. Khachaturov
2002-02-11 23:01 ` Peter V. Saveliev
2002-02-11 23:06 ` Alexander Kubatkin
2002-02-12 11:27 ` cornet

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