* [gentoo-user] pants
@ 2007-01-10 4:00 Korthrun
2007-01-10 4:20 ` Cliff Wells
` (5 more replies)
0 siblings, 6 replies; 16+ messages in thread
From: Korthrun @ 2007-01-10 4:00 UTC (permalink / raw
To: gentoo-user
Does anyone have any clue what put:
PANTS=ON
into my environment?
google is failing me here =/
Thanks
--
() The ASCII Ribbon Campaign - against HTML Email,
/\ vCards, and proprietary formats.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 4:00 [gentoo-user] pants Korthrun
@ 2007-01-10 4:20 ` Cliff Wells
2007-01-10 4:21 ` Joshua Schmidlkofer
` (4 subsequent siblings)
5 siblings, 0 replies; 16+ messages in thread
From: Cliff Wells @ 2007-01-10 4:20 UTC (permalink / raw
To: gentoo-user
Korthrun wrote:
> Does anyone have any clue what put:
> PANTS=ON
> into my environment?
>
I'd be more concerned if it was
ZIPPER=DOWN
Cliff
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 4:00 [gentoo-user] pants Korthrun
2007-01-10 4:20 ` Cliff Wells
@ 2007-01-10 4:21 ` Joshua Schmidlkofer
2007-01-10 4:22 ` Kent Fredric
` (3 subsequent siblings)
5 siblings, 0 replies; 16+ messages in thread
From: Joshua Schmidlkofer @ 2007-01-10 4:21 UTC (permalink / raw
To: gentoo-user
do other people use your server? Is there any other clothing
references. You can lookup Clothromancy in the Necronomicon.
On 1/9/07, Korthrun <korthrun@gmail.com> wrote:
> Does anyone have any clue what put:
> PANTS=ON
> into my environment?
>
> google is failing me here =/
>
> Thanks
>
> --
> () The ASCII Ribbon Campaign - against HTML Email,
> /\ vCards, and proprietary formats.
> --
> gentoo-user@gentoo.org mailing list
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 4:00 [gentoo-user] pants Korthrun
2007-01-10 4:20 ` Cliff Wells
2007-01-10 4:21 ` Joshua Schmidlkofer
@ 2007-01-10 4:22 ` Kent Fredric
2007-01-10 4:31 ` Justin Findlay
` (2 subsequent siblings)
5 siblings, 0 replies; 16+ messages in thread
From: Kent Fredric @ 2007-01-10 4:22 UTC (permalink / raw
To: gentoo-user
On 1/10/07, Korthrun <korthrun@gmail.com> wrote:
> Does anyone have any clue what put:
> PANTS=ON
> into my environment?
>
> google is failing me here =/
>
> Thanks
>
> --
> () The ASCII Ribbon Campaign - against HTML Email,
> /\ vCards, and proprietary formats.
> --
> gentoo-user@gentoo.org mailing list
>
>
no clue, i dont seem to have PANTS=ON in my environment :P
</token lame humour>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 4:00 [gentoo-user] pants Korthrun
` (2 preceding siblings ...)
2007-01-10 4:22 ` Kent Fredric
@ 2007-01-10 4:31 ` Justin Findlay
2007-01-10 5:21 ` Bo Ørsted Andresen
[not found] ` <20070110223400.GA3135@cortana.slightlyderanged.net>
5 siblings, 0 replies; 16+ messages in thread
From: Justin Findlay @ 2007-01-10 4:31 UTC (permalink / raw
To: gentoo-user
On AD 2007 January 09 Tuesday 09:00:21 PM -0700, Korthrun wrote:
> Does anyone have any clue what put:
> PANTS=ON
> into my environment?
Try:
$ find /etc/env.d -type f | xargs grep -n PANTS
Justin
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 4:00 [gentoo-user] pants Korthrun
` (3 preceding siblings ...)
2007-01-10 4:31 ` Justin Findlay
@ 2007-01-10 5:21 ` Bo Ørsted Andresen
2007-01-10 6:25 ` Justin Findlay
[not found] ` <20070110223400.GA3135@cortana.slightlyderanged.net>
5 siblings, 1 reply; 16+ messages in thread
From: Bo Ørsted Andresen @ 2007-01-10 5:21 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 314 bytes --]
On Wednesday 10 January 2007 05:00, Korthrun wrote:
> Does anyone have any clue what put:
> PANTS=ON
> into my environment?
Does:
# grep -R "PANTS=ON" /etc/bash /etc/profile* /etc/env.d ~/.bash* ~/.profile
output anything (other than perhaps an "No such file or directory" error)?
--
Bo Andresen
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 5:21 ` Bo Ørsted Andresen
@ 2007-01-10 6:25 ` Justin Findlay
2007-01-10 6:40 ` Korthrun
` (2 more replies)
0 siblings, 3 replies; 16+ messages in thread
From: Justin Findlay @ 2007-01-10 6:25 UTC (permalink / raw
To: gentoo-user
On AD 2007 January 10 Wednesday 06:21:10 AM +0100, Bo V|GV|Grsted Andresen wrote:
> # grep -R "PANTS=ON" /etc/bash /etc/profile* /etc/env.d ~/.bash* ~/.profile
Or better yet,
# find /etc -type f -exec grep -nI --color PANTS {} \;
$ ls -d --color=no ~/.??* | xargs -i find {} -type f -exec grep -nI --color PANTS {} \;
OR
$ find ~ | grep "\.\/\." | xargs grep -nI --color PANTS
OR
$ find ~ -mindepth 1 -wholename './.*' | xargs -r grep -nI --color PANTS
Yeah, maybe I'm just showing off by now. (-:
Justin
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:25 ` Justin Findlay
@ 2007-01-10 6:40 ` Korthrun
2007-01-10 15:09 ` Willie Wong
2007-01-10 6:43 ` Iain Buchanan
2007-01-10 9:49 ` [gentoo-user] pants Neil Bothwick
2 siblings, 1 reply; 16+ messages in thread
From: Korthrun @ 2007-01-10 6:40 UTC (permalink / raw
To: gentoo-user
On 1/9/07, Justin Findlay <justin@jfindlay.us> wrote:
> On AD 2007 January 10 Wednesday 06:21:10 AM +0100, Bo V|GV|Grsted Andresen wrote:
> > # grep -R "PANTS=ON" /etc/bash /etc/profile* /etc/env.d ~/.bash* ~/.profile
>
> Or better yet,
>
> # find /etc -type f -exec grep -nI --color PANTS {} \;
>
> $ ls -d --color=no ~/.??* | xargs -i find {} -type f -exec grep -nI --color PANTS {} \;
> OR
> $ find ~ | grep "\.\/\." | xargs grep -nI --color PANTS
> OR
> $ find ~ -mindepth 1 -wholename './.*' | xargs -r grep -nI --color PANTS
>
> Yeah, maybe I'm just showing off by now. (-:
>
>
> Justin
> --
> gentoo-user@gentoo.org mailing list
>
>
Thanks for the responses.
None of the grepping found anything sadly, and no one else uses this
box. It's my home workstation.
I dropped out of Xorg and noticed that it wasn't in my env any more.
Installed fluxbox and fired it up and behold, PANTS is not set.
A quick google for "enlightenment pants" was quite......enlightening.
Thanks again for all the neat ideas.
--
() The ASCII Ribbon Campaign - against HTML Email,
/\ vCards, and proprietary formats.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:40 ` Korthrun
@ 2007-01-10 15:09 ` Willie Wong
0 siblings, 0 replies; 16+ messages in thread
From: Willie Wong @ 2007-01-10 15:09 UTC (permalink / raw
To: gentoo-user
On Tue, Jan 09, 2007 at 11:40:12PM -0700, Penguin Lover Korthrun squawked:
> None of the grepping found anything sadly, and no one else uses this
> box. It's my home workstation.
>
> I dropped out of Xorg and noticed that it wasn't in my env any more.
> Installed fluxbox and fired it up and behold, PANTS is not set.
>
> A quick google for "enlightenment pants" was quite......enlightening.
>
> Thanks again for all the neat ideas.
>
Ah! I knew there was something familiar with that pants thing: the
enlightenment e-pants epplet. But do you have that particular epplet
running? I run e16 and PANTS certainly isn't in my env...
W
--
1 out of every 5 people thinks the other 4 are idiots.
Sortir en Pantoufles: up 33 days, 13:25
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:25 ` Justin Findlay
2007-01-10 6:40 ` Korthrun
@ 2007-01-10 6:43 ` Iain Buchanan
2007-01-10 7:11 ` Dale
2007-01-10 7:23 ` Justin Findlay
2007-01-10 9:49 ` [gentoo-user] pants Neil Bothwick
2 siblings, 2 replies; 16+ messages in thread
From: Iain Buchanan @ 2007-01-10 6:43 UTC (permalink / raw
To: gentoo-user
On Tue, 2007-01-09 at 23:25 -0700, Justin Findlay wrote:
> Yeah, maybe I'm just showing off by now. (-:
not only do I have to move my eyes up and down and scroll to read top
and bottom postings, but now I have put my head on the left as well as
the right side for smiley faces going in the other direction!
what's the standard with smiley faces?! 5:)
--
Iain Buchanan <iaindb at netspace dot net dot au>
"I always avoid prophesying beforehand because it is much better
to prophesy after the event has already taken place. " - Winston
Churchill
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:43 ` Iain Buchanan
@ 2007-01-10 7:11 ` Dale
2007-01-10 7:23 ` Justin Findlay
1 sibling, 0 replies; 16+ messages in thread
From: Dale @ 2007-01-10 7:11 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 712 bytes --]
Iain Buchanan wrote:
> On Tue, 2007-01-09 at 23:25 -0700, Justin Findlay wrote:
>
>
>> Yeah, maybe I'm just showing off by now. (-:
>>
>
> not only do I have to move my eyes up and down and scroll to read top
> and bottom postings, but now I have put my head on the left as well as
> the right side for smiley faces going in the other direction!
>
> what's the standard with smiley faces?! 5:)
>
If this wasn't a mailing list, I was going to send a picture of
something, pair of pants maybe, that was upside down.
I prefer top posting mostly. I top post everywhere else but this
mailing list. Anybody remember when I first came here? :/
Dale
:-) :-) :-) :-)
--
www.myspace.com/dalek1967
[-- Attachment #2: Type: text/html, Size: 1296 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:43 ` Iain Buchanan
2007-01-10 7:11 ` Dale
@ 2007-01-10 7:23 ` Justin Findlay
2007-01-10 7:44 ` [gentoo-user] [ot now?] pants Nelson, David (ED, PAR&D)
1 sibling, 1 reply; 16+ messages in thread
From: Justin Findlay @ 2007-01-10 7:23 UTC (permalink / raw
To: gentoo-user
On AD 2007 January 10 Wednesday 04:13:54 PM +0930, Iain Buchanan wrote:
> On Tue, 2007-01-09 at 23:25 -0700, Justin Findlay wrote:
>
> > Yeah, maybe I'm just showing off by now. (-:
>
> not only do I have to move my eyes up and down and scroll to read top
> and bottom postings, but now I have put my head on the left as well as
> the right side for smiley faces going in the other direction!
>
> what's the standard with smiley faces?! 5:)
At the risk of appearing too willing to always defer to the RFC's here
is a quotation from the appropriate RFC,
http://www.faqs.org/rfcs/rfc1855.html
- Use smileys to indicate tone of voice, but use them sparingly.
:-) is an example of a smiley (Look sideways). Don't assume
that the inclusion of a smiley will make the recipient happy
with what you say or wipe out an otherwise insulting comment.
Therefore, total lack of standards. Ye haw!
. .
\_/
Justin
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [gentoo-user] [ot now?] pants
2007-01-10 7:23 ` Justin Findlay
@ 2007-01-10 7:44 ` Nelson, David (ED, PAR&D)
0 siblings, 0 replies; 16+ messages in thread
From: Nelson, David (ED, PAR&D) @ 2007-01-10 7:44 UTC (permalink / raw
To: gentoo-user
> -----Original Message-----
> From: Justin Findlay [mailto:justin@jfindlay.us]
> Sent: 10 January 2007 07:24
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] pants
>
> At the risk of appearing too willing to always defer to the RFC's here
> is a quotation from the appropriate RFC,
> http://www.faqs.org/rfcs/rfc1855.html
>
> - Use smileys to indicate tone of voice, but use them sparingly.
> :-) is an example of a smiley (Look sideways). Don't assume
> that the inclusion of a smiley will make the recipient happy
> with what you say or wipe out an otherwise insulting comment.
>
> Therefore, total lack of standards. Ye haw!
>
> . .
> \_/
>
>
> Justin
The example given is :-)
Maybe (-: is for left handed people?
I do use >.> a bit (shifty eyes) or >.< (excited/shocked) though which
aren't sideways :>
David "7.40am is for playing on emails not working, silly" Nelson
Note: These views are my own, advice is provided with no guarantee of
success. I do not represent anyone else in any emails I send to this
list.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [gentoo-user] pants
2007-01-10 6:25 ` Justin Findlay
2007-01-10 6:40 ` Korthrun
2007-01-10 6:43 ` Iain Buchanan
@ 2007-01-10 9:49 ` Neil Bothwick
2 siblings, 0 replies; 16+ messages in thread
From: Neil Bothwick @ 2007-01-10 9:49 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 389 bytes --]
On Tue, 9 Jan 2007 23:25:31 -0700, Justin Findlay wrote:
> # find /etc -type f -exec grep -nI --color PANTS {} \;
You'll need a -H on the grep arguments, otherwise it won't show the name
of the file that contains the match, because find is passing it the files
one at a time.
Quoting the {} is good practice too.
--
Neil Bothwick
Room service? Send up a larger room.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
[parent not found: <20070110223400.GA3135@cortana.slightlyderanged.net>]
* Re: [gentoo-user] pants
[not found] ` <20070110223400.GA3135@cortana.slightlyderanged.net>
@ 2007-01-10 22:44 ` Arturo 'Buanzo' Busleiman
2007-01-11 2:26 ` Daniel Vrcic
0 siblings, 1 reply; 16+ messages in thread
From: Arturo 'Buanzo' Busleiman @ 2007-01-10 22:44 UTC (permalink / raw
To: gentoo-user
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Richard Cox wrote:
> I don't know.. Having PANTS=ON is purely optional in my environment. :)
Damn. His system got probably raped. Now the system has activated some protections.
- --
Arturo "Buanzo" Busleiman - Consultor Independiente en Seguridad Informatica
¿No sabés a dónde ir a comer o tomar algo? Visitá www.vivamoslavida.com.ar
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFFpWxGAlpOsGhXcE0RAnfhAJ9yUvqC87A2WebYJ0mzoGn06oLvxACeL8Cb
Zp9q7LqrSCqeqmUy0TzYNgE=
=SS4L
-----END PGP SIGNATURE-----
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2007-01-11 2:33 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-10 4:00 [gentoo-user] pants Korthrun
2007-01-10 4:20 ` Cliff Wells
2007-01-10 4:21 ` Joshua Schmidlkofer
2007-01-10 4:22 ` Kent Fredric
2007-01-10 4:31 ` Justin Findlay
2007-01-10 5:21 ` Bo Ørsted Andresen
2007-01-10 6:25 ` Justin Findlay
2007-01-10 6:40 ` Korthrun
2007-01-10 15:09 ` Willie Wong
2007-01-10 6:43 ` Iain Buchanan
2007-01-10 7:11 ` Dale
2007-01-10 7:23 ` Justin Findlay
2007-01-10 7:44 ` [gentoo-user] [ot now?] pants Nelson, David (ED, PAR&D)
2007-01-10 9:49 ` [gentoo-user] pants Neil Bothwick
[not found] ` <20070110223400.GA3135@cortana.slightlyderanged.net>
2007-01-10 22:44 ` Arturo 'Buanzo' Busleiman
2007-01-11 2:26 ` Daniel Vrcic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox