ALT Linux Community general discussions
 help / color / mirror / Atom feed
* Re: [Comm] скрипт
  @ 2005-04-29 11:19 ` Genix
  2005-04-29 11:22   ` [Comm] скрипт Vitaly Ostanin
  2005-04-29 11:20 ` [Comm] скрипт Michael Isachenkov
  2005-04-29 11:23 ` Nick S. Grechukh
  2 siblings, 1 reply; 5+ messages in thread
From: Genix @ 2005-04-29 11:19 UTC (permalink / raw)
  To: community

Макс пишет:

> Привет.
>
> К примеру у меня есть директория /home/tmp, в ней много файлов, как 
> мне, с помощью скрипта, для всех файлов типа *.tm выполнить рад операций?
>

1) man find
2) find /home/tmp -type f -name "*.tm" -exec rm -rf {} \;
без прочтения первого, второе применять с особой осторожностью


-- 
У каждого в башке свои тараканы...



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

* Re: [Comm] скрипт
    2005-04-29 11:19 ` [Comm] скрипт Genix
@ 2005-04-29 11:20 ` Michael Isachenkov
  2005-04-29 11:23 ` Nick S. Grechukh
  2 siblings, 0 replies; 5+ messages in thread
From: Michael Isachenkov @ 2005-04-29 11:20 UTC (permalink / raw)
  To: community

> К примеру у меня есть директория /home/tmp, в ней много файлов, как мне, с
> помощью скрипта, для всех файлов типа *.tm выполнить рад операций?

find /home/tmp/ -name "*.tm" | xargs операция

-- 
Best regards, Michael Isachenkov


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

* [Comm] Re: скрипт
  2005-04-29 11:19 ` [Comm] скрипт Genix
@ 2005-04-29 11:22   ` Vitaly Ostanin
  0 siblings, 0 replies; 5+ messages in thread
From: Vitaly Ostanin @ 2005-04-29 11:22 UTC (permalink / raw)
  To: community

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

Genix пишет:
> Макс пишет:
>
>
>>Привет.
>>
>>К примеру у меня есть директория /home/tmp, в ней много файлов, как
>>мне, с помощью скрипта, для всех файлов типа *.tm выполнить рад операций?
>>
>
>
> 1) man find
> 2) find /home/tmp -type f -name "*.tm" -exec rm -rf {} \;
> без прочтения первого, второе применять с особой осторожностью

Или

find -type f -name "*.tm" -print0| \
xargs -r0 скрипт_ряда_операций --

<skipped/>

--
Regards, Vyt
mailto:  vyt@vzljot.ru
JID:     vyt@vzljot.ru

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

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

* Re: [Comm] скрипт
    2005-04-29 11:19 ` [Comm] скрипт Genix
  2005-04-29 11:20 ` [Comm] скрипт Michael Isachenkov
@ 2005-04-29 11:23 ` Nick S. Grechukh
  2005-04-29 11:24   ` Genix
  2 siblings, 1 reply; 5+ messages in thread
From: Nick S. Grechukh @ 2005-04-29 11:23 UTC (permalink / raw)
  To: community

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

On Friday 29 April 2005 14:16, Макс wrote:
> Привет.
>
> К примеру у меня есть директория /home/tmp, в ней много файлов, как мне, с
> помощью скрипта, для всех файлов типа *.tm выполнить рад операций?
for i in /home/tmp/*.tm; do echo $i; ls -l $i; done

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

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

* Re: [Comm] скрипт
  2005-04-29 11:23 ` Nick S. Grechukh
@ 2005-04-29 11:24   ` Genix
  0 siblings, 0 replies; 5+ messages in thread
From: Genix @ 2005-04-29 11:24 UTC (permalink / raw)
  To: community

Nick S. Grechukh пишет:

>>К примеру у меня есть директория /home/tmp, в ней много файлов, как мне, с
>>помощью скрипта, для всех файлов типа *.tm выполнить рад операций?
>>    
>>
>for i in /home/tmp/*.tm; do echo $i; ls -l $i; done
>  
>

рекурсивно? :)


-- 
У каждого в башке свои тараканы...



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

end of thread, other threads:[~2005-04-29 11:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-29 11:19 ` [Comm] скрипт Genix
2005-04-29 11:22   ` [Comm] скрипт Vitaly Ostanin
2005-04-29 11:20 ` [Comm] скрипт Michael Isachenkov
2005-04-29 11:23 ` Nick S. Grechukh
2005-04-29 11:24   ` Genix

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