ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] pidof -x does not work
@ 2010-10-12 20:53 Igor Vlasenko
  2010-10-12 21:03 ` Led
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Vlasenko @ 2010-10-12 20:53 UTC (permalink / raw)
  To: devel

Господа, 

pidof -x не работает или это фича?

echo sleep 20 > 1.sh
$ sh 1.sh&; ps ax | grep 1.sh
[1] 24100
24100 pts/15   SN     0:00 sh 1.sh 
$ pidof -x 1.sh       
$ 
[1]  + done       sh 1.sh

-- 

Dr. Igor Vlasenko
--------------------
Topology Department
Institute of Math
Kiev, Ukraine



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

* Re: [devel] pidof -x does not work
  2010-10-12 20:53 [devel] pidof -x does not work Igor Vlasenko
@ 2010-10-12 21:03 ` Led
  2010-10-12 21:08   ` Igor Vlasenko
  0 siblings, 1 reply; 9+ messages in thread
From: Led @ 2010-10-12 21:03 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Tuesday 12 October 2010 23:53:12 Igor Vlasenko wrote:
> Господа,
>
> pidof -x не работает или это фича?
>
> echo sleep 20 > 1.sh
> $ sh 1.sh&; ps ax | grep 1.sh
> [1] 24100
> 24100 pts/15   SN     0:00 sh 1.sh
> $ pidof -x 1.sh
> $
> [1]  + done       sh 1.sh

А кто вас учил запускать X, а отслеживать pidof'ом Y?

-- 
Led

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

* Re: [devel] pidof -x does not work
  2010-10-12 21:03 ` Led
@ 2010-10-12 21:08   ` Igor Vlasenko
  2010-10-12 21:11     ` Igor Vlasenko
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Vlasenko @ 2010-10-12 21:08 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wed, Oct 13, 2010 at 12:03:48AM +0300, Led wrote:
> On Tuesday 12 October 2010 23:53:12 Igor Vlasenko wrote:
> > Господа,
> >
> > pidof -x не работает или это фича?
> >
> > echo sleep 20 > 1.sh
> > $ sh 1.sh&; ps ax | grep 1.sh
> > [1] 24100
> > 24100 pts/15   SN     0:00 sh 1.sh
> > $ pidof -x 1.sh
> > $
> > [1]  + done       sh 1.sh
> 
> А кто вас учил запускать X, а отслеживать pidof'ом Y?
это не я, а другой нехороший буратин.
и для этого -x и придумана - цитируя man pidof

       -x     Scripts too - this causes the program  to  also  return  process
              id's of shells running the named scripts.

-- 

Dr. Igor Vlasenko
--------------------
Topology Department
Institute of Math
Kiev, Ukraine



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

* Re: [devel] pidof -x does not work
  2010-10-12 21:08   ` Igor Vlasenko
@ 2010-10-12 21:11     ` Igor Vlasenko
  2010-10-12 21:17       ` Led
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Vlasenko @ 2010-10-12 21:11 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wed, Oct 13, 2010 at 12:08:47AM +0300, Igor Vlasenko wrote:
в общем, выглядит как баг,
что не хорошо, так как pidof -x вызывается в getpidofproc()
в /etc/rc.d/init.d/functions-compat.
я пока извратился через pgrep -f, но это гораздо не аккуратнее.

> > > pidof -x не работает или это фича?
> > >
> > > echo sleep 20 > 1.sh
> > > $ sh 1.sh&; ps ax | grep 1.sh
> > > [1] 24100
> > > 24100 pts/15   SN     0:00 sh 1.sh
> > > $ pidof -x 1.sh
> > > $
> > > [1]  + done       sh 1.sh
> > 
> > А кто вас учил запускать X, а отслеживать pidof'ом Y?
> это не я, а другой нехороший буратин.
> и для этого -x и придумана - цитируя man pidof
> 
>        -x     Scripts too - this causes the program  to  also  return  process
>               id's of shells running the named scripts.
> 
> -- 
> 
> Dr. Igor Vlasenko
> --------------------
> Topology Department
> Institute of Math
> Kiev, Ukraine
> 
> _______________________________________________
> Devel mailing list
> Devel@lists.altlinux.org
> https://lists.altlinux.org/mailman/listinfo/devel

-- 

Dr. Igor Vlasenko
--------------------
Topology Department
Institute of Math
Kiev, Ukraine



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

* Re: [devel] pidof -x does not work
  2010-10-12 21:11     ` Igor Vlasenko
@ 2010-10-12 21:17       ` Led
  2010-10-12 21:22         ` Igor Vlasenko
  0 siblings, 1 reply; 9+ messages in thread
From: Led @ 2010-10-12 21:17 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wednesday 13 October 2010 00:11:46 Igor Vlasenko wrote:
> On Wed, Oct 13, 2010 at 12:08:47AM +0300, Igor Vlasenko wrote:
> в общем, выглядит как баг,

Выглядит как то, что вы не поняли того, что написано в man.
pidof -x действительно отлавливает скрипты, но только запущенные "явно" 
(./1.sh), а не "косвено" (sh 1.sh). Без '-x' он и этого не делает

> что не хорошо, так как pidof -x вызывается в getpidofproc()
> в /etc/rc.d/init.d/functions-compat.
> я пока извратился через pgrep -f, но это гораздо не аккуратнее.
>
> > > > pidof -x не работает или это фича?
> > > >
> > > > echo sleep 20 > 1.sh
> > > > $ sh 1.sh&; ps ax | grep 1.sh
> > > > [1] 24100
> > > > 24100 pts/15   SN     0:00 sh 1.sh
> > > > $ pidof -x 1.sh
> > > > $
> > > > [1]  + done       sh 1.sh
> > >
> > > А кто вас учил запускать X, а отслеживать pidof'ом Y?
> >
> > это не я, а другой нехороший буратин.
> > и для этого -x и придумана - цитируя man pidof
> >
> >        -x     Scripts too - this causes the program  to  also  return 
> > process id's of shells running the named scripts.

-- 
Led

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

* Re: [devel] pidof -x does not work
  2010-10-12 21:17       ` Led
@ 2010-10-12 21:22         ` Igor Vlasenko
  2010-10-12 21:26           ` Led
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Vlasenko @ 2010-10-12 21:22 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wed, Oct 13, 2010 at 12:17:07AM +0300, Led wrote:
> On Wednesday 13 October 2010 00:11:46 Igor Vlasenko wrote:
> > On Wed, Oct 13, 2010 at 12:08:47AM +0300, Igor Vlasenko wrote:
> > в общем, выглядит как баг,
> 
> Выглядит как то, что вы не поняли того, что написано в man.
> pidof -x действительно отлавливает скрипты, но только запущенные "явно" 
> (./1.sh), а не "косвено" (sh 1.sh). Без '-x' он и этого не делает

paзницы в таблице процессов между ними никакой.
Да и пробовал я и так и так, приведенный пример
просто удобнее тем, что короче -- нет chmod 755 ./1.sh.
попробуйте с chmod 755 ./1.sh и убедитесь сами.

-- 

Dr. Igor Vlasenko
--------------------
Topology Department
Institute of Math
Kiev, Ukraine



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

* Re: [devel] pidof -x does not work
  2010-10-12 21:22         ` Igor Vlasenko
@ 2010-10-12 21:26           ` Led
  2010-10-12 21:35             ` Igor Vlasenko
  0 siblings, 1 reply; 9+ messages in thread
From: Led @ 2010-10-12 21:26 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wednesday 13 October 2010 00:22:18 Igor Vlasenko wrote:
> On Wed, Oct 13, 2010 at 12:17:07AM +0300, Led wrote:
> > On Wednesday 13 October 2010 00:11:46 Igor Vlasenko wrote:
> > > On Wed, Oct 13, 2010 at 12:08:47AM +0300, Igor Vlasenko wrote:
> > > в общем, выглядит как баг,
> >
> > Выглядит как то, что вы не поняли того, что написано в man.
> > pidof -x действительно отлавливает скрипты, но только запущенные "явно"
> > (./1.sh), а не "косвено" (sh 1.sh). Без '-x' он и этого не делает
>
> paзницы в таблице процессов между ними никакой.
> Да и пробовал я и так и так, приведенный пример
> просто удобнее тем, что короче -- нет chmod 755 ./1.sh.
> попробуйте с chmod 755 ./1.sh и убедитесь сами.

Я попробовал и убедился, перед тем как написать

-- 
Led

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

* Re: [devel] pidof -x does not work
  2010-10-12 21:26           ` Led
@ 2010-10-12 21:35             ` Igor Vlasenko
  2010-10-12 21:43               ` Led
  0 siblings, 1 reply; 9+ messages in thread
From: Igor Vlasenko @ 2010-10-12 21:35 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wed, Oct 13, 2010 at 12:26:28AM +0300, Led wrote:
> Я попробовал и убедился, перед тем как написать

Попробовал еще раз - едут лыжи!
дописал #!/bin/sh, запустил ./1.sh - поехало.

У меня не сработал sh <скрипт с #!/bin/sh>
а потом я потерял #!/bin/sh. это и причина.

Спасибо большое! Cорри за тормоза.
-- 

Dr. Igor Vlasenko
--------------------
Topology Department
Institute of Math
Kiev, Ukraine



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

* Re: [devel] pidof -x does not work
  2010-10-12 21:35             ` Igor Vlasenko
@ 2010-10-12 21:43               ` Led
  0 siblings, 0 replies; 9+ messages in thread
From: Led @ 2010-10-12 21:43 UTC (permalink / raw)
  To: ALT Linux Team development discussions

On Wednesday 13 October 2010 00:35:02 Igor Vlasenko wrote:
> On Wed, Oct 13, 2010 at 12:26:28AM +0300, Led wrote:
> > Я попробовал и убедился, перед тем как написать
>
> Попробовал еще раз - едут лыжи!
> дописал #!/bin/sh, запустил ./1.sh - поехало.
>
> У меня не сработал sh <скрипт с #!/bin/sh>
> а потом я потерял #!/bin/sh. это и причина.

Да, без шебанга в скрипте "лыжи не поедут". Сорри за то, что не упомянул об 
этом раньше.

>
> Спасибо большое! Cорри за тормоза.



-- 
Led

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

end of thread, other threads:[~2010-10-12 21:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-12 20:53 [devel] pidof -x does not work Igor Vlasenko
2010-10-12 21:03 ` Led
2010-10-12 21:08   ` Igor Vlasenko
2010-10-12 21:11     ` Igor Vlasenko
2010-10-12 21:17       ` Led
2010-10-12 21:22         ` Igor Vlasenko
2010-10-12 21:26           ` Led
2010-10-12 21:35             ` Igor Vlasenko
2010-10-12 21:43               ` Led

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/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 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git