From: "Dmitry V. Levin" <ldv@fandra.org>
To: mandrake-russian@linuxteam.iplabs.ru
Subject: [mdk-re] Re: [mdk-re] Удаление битых ссылок
Date: Sat Feb 10 04:18:00 2001
Message-ID: <20010210042224.A3008@LDV.fandra.org> (raw)
In-Reply-To: <3A83F20E.3B08F1CE@zmail.ru>; from cornet@zmail.ru on Fri, Feb 09, 2001 at 04:35:10PM +0300
[-- Attachment #1: Type: text/plain, Size: 1466 bytes --]
On Fri, Feb 09, 2001 at 04:35:10PM +0300, cornet wrote:
> cornet wrote:
> > А можно как нибудь результат find гнать не в параметр запуска -exec а в
> > трубу, и на другом конце все это сгребать в цикле, передавать в
> > переменную $file и обрабатывать той же стокой
> > [ ! -L "$file" -o -e "$file" ] || rm -f "$file"
> > ???
> Ok, уже сам справился :-))
> Все оказалось до безобразия просто, и требуется всего ОДИН шелл на всею
> процедуру!
> Вызов:
>
> find ./ -print | ./com.sh
>
> Содержимое com.sh:
>
> #!/bin/sh
> while read file
> do [ ! -L "$file" -o -e "$file" ] || rm -f "$file"
> done
>
> Как все оказывается просто, когда знаешь!!!
> :-))))))))
А теперь усложним задачу. :)
Представьте себе, что среди множества подлежащих обработке файлов
встречаются файлы с именами, содержащими, скажем, символ перевода строки.
Тогда Ваш скриптик придется слегка подправить:
#!/bin/sh
for file in "$@"; do
[ -e "$file" ] || rm -f "$file"
done
и вызывать его так:
find . -type l -print0 |xargs -r0 ./com.sh
Regards,
Dmitry
+-------------------------------------------------------------------------+
Dmitry V. Levin mailto://ldv@fandra.org
Software Engineer PGP pubkey http://www.fandra.org/users/ldv/pgpkeys.html
IPLabs Linux Team http://linux.iplabs.ru
Fandra Project http://www.fandra.org
+-------------------------------------------------------------------------+
UNIX is user friendly. It's just very selective about who its friends are.
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
next prev parent reply other threads:[~2001-02-10 4:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-02-09 12:25 denf
2001-02-09 14:16 ` [mdk-re] " Dmitry V. Levin
2001-02-09 15:36 ` cornet
2001-02-09 15:58 ` cornet
2001-02-09 16:33 ` cornet
2001-02-10 4:18 ` Dmitry V. Levin [this message]
2001-02-12 12:14 ` cornet
2001-02-09 15:29 ` cornet
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=20010210042224.A3008@LDV.fandra.org \
--to=ldv@fandra.org \
--cc=mandrake-russian@linuxteam.iplabs.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