ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: "Artem K. Jouravsky" <ujo@ifirst.ru>
To: ALT Linux Spring mailing list <mandrake-russian@altlinux.ru>
Cc: "Dmitry V. Levin" <ldv@alt-linux.org>
Subject: [mdk-re] Re: [JT] (find + grep) && exceptions
Date: Tue Feb 19 11:48:12 2002
Message-ID: <20020219085912.GB6218@ifirst.ru> (raw)
In-Reply-To: <20020219084424.GB29316@ldv.office.alt-linux.org>

On Tue, Feb 19, 2002 at 11:44:24AM +0300, Dmitry V. Levin wrote:
> On Tue, Feb 19, 2002 at 12:58:07AM +0300, Artem K. Jouravsky wrote:
> > Вот мучает меня уже несколько дней (не сильно, просто как комар) такое
> > желание: есть куча пользователей-разработчиков, которые обожают права 777
> > на файлы в своей директории. Хочется сделать им сюрприз, ибо давно
> > предупреждены. Но! Есть файлы (или по крайней мере, папки), на которые 
> > действительно нужны права на запись для all. Делаю такую конструкцию:
> > 
> > $find /path/to -type f -perm -o=w -print0|xargs -0 chmod 644 {} ';'
> > 
> > Хочется вставить посредине что-то вроде grep -v <file> exceptions, 
> > где <file> то что grep получит из <STDIN> а exceptions - список
> > исключений. Но вот проблема - xargs -0 grep exceptions даст совсем не то
> > что мне нужно... 
> > Можно сделать подлиннее, но не хочется. Есть способ это сделать коротко?
> 
> find /path/to -type f -perm -o=w -print0 |xargs -r0 /run/my/script
> 
> Соответственно, скрипт этот может делать нечто вроде
> for f in "$@"; do
> 	[ -f "$f" ] || continue
> 	p=$(quote_regexp "$f")
> 	grep -qs '^$p$' /file/with/exceptions && continue
> 	chmod 644 "$f"
> done
> 
> quote_regexp - это функция, экранирующая метасимволы регулярных выражений.
> Ее реализация - простое, но полезное упражнение.
> 
> В любом случае, абсолютно корректное решение этой задачи с помощью grep
> вряд ли возможно ввиду того, что в именах файлов могут присутствовать
> переводы строки.
Хм, спасибо!


-- 
Best wishes,
Artem K. Jouravsky,
iFirst Ltd, System Administrator.
-----------------------
I have not yet begun to byte!



      reply	other threads:[~2002-02-19 11:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-02-19  0:47 [mdk-re] " Artem K. Jouravsky
2002-02-19 11:37 ` Dmitry V. Levin
2002-02-19 11:48   ` Artem K. Jouravsky [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020219085912.GB6218@ifirst.ru \
    --to=ujo@ifirst.ru \
    --cc=ldv@alt-linux.org \
    --cc=mandrake-russian@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

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