Re: [Audyssey] alteraeon aliases

2017-02-04 Thread Jude DaShiell
I got an alias with a vertical working in tintin-alteraeon by using a 
double vertical you are right the backslash just before a vertical in 
tintin-alteraeon won't work.


On Wed, 13 Feb 2002, Travis Siegel wrote:


Date: Wed, 13 Feb 2002 20:38:56
From: Travis Siegel <tsie...@nfbcal.org>
Reply-To: Gamers Discussion list <gamers@audyssey.org>
To: Gamers Discussion list <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

When making aliases, if you want to use the vertical bar in your alias, you 
need to preceed it with a backslash character.  I have lots of aliases that 
do this kind of thing, and it works fine.  Normally, the vertical bar is used 
just like in unix, as a redirect to the next command, but in aliases, it 
removes them before actually doing anything with them.  I've also discovered 
that with tintin, it's nearly impossible to get a vertical bar into an alias. 
I always have to login with a different client to get this to work.  After 
it's setup though, tintin works fine.



On Fri, 3 Feb 2017, Jude DaShiell wrote:

I found out the | character is recognized as a newline in the alias editor. 
I tried defining qt as quest $1| grep TODO and it got split at the vertical 
character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something 
like this would work.




--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] alteraeon aliases

2017-02-04 Thread Travis Siegel
When making aliases, if you want to use the vertical bar in your alias, 
you need to preceed it with a backslash character.  I have lots of aliases 
that do this kind of thing, and it works fine.  Normally, the vertical bar 
is used just like in unix, as a redirect to the next command, but in 
aliases, it removes them before actually doing anything with them.  I've 
also discovered that with tintin, it's nearly impossible to get a vertical 
bar into an alias.  I always have to login with a different client to get 
this to work.  After it's setup though, tintin works fine.



On Fri, 3 Feb 2017, Jude DaShiell wrote:

I found out the | character is recognized as a newline in the alias editor. 
I tried defining qt as quest $1| grep TODO and it got split at the vertical 
character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something like 
this would work.




--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] alteraeon aliases

2017-02-03 Thread Jude DaShiell

thanks, this will be useful.
On Fri, 3 Feb 2017, john wrote:


Date: Fri, 3 Feb 2017 10:13:43
From: john <jpcarnemo...@gmail.com>
Reply-To: Gamers Discussion list <gamers@audyssey.org>
To: Gamers Discussion list <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

The alias and editor do recognize pipes.
As I said, if you wish to input a pipe character, you need to have two of them.
For example,
quest all || grep -i todo
instead of
quest all | grep -i todo

--
From: "Jude DaShiell" <jdash...@panix.com>
Sent: Friday, February 03, 2017 9:03
To: "Gamers Discussion list" <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

My guess is then the alias editor doesn't recognize or work with pipes
yet since I wanted to pipe the quest command through grep and everything
I tried so far hadn't worked.

On Fri, 3 Feb 2017, john wrote:


Date: Fri, 3 Feb 2017 07:13:46
From: john <jpcarnemo...@gmail.com>
Reply-To: Gamers Discussion list <gamers@audyssey.org>
To: Gamers Discussion list <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

The bar is not recognized as a newline character. Rather, you're activating a 
pipe command.
To insert the character in text, use two bars.

--
From: "Jude DaShiell" <jdash...@panix.com>
Sent: Friday, February 03, 2017 6:49
To: <gamers@audyssey.org>
Subject: [Audyssey] alteraeon aliases

I found out the | character is recognized as a newline in the alias
editor.  I tried defining qt as quest $1| grep TODO and it got split at
the vertical character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something
like this would work.



--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.






--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] alteraeon aliases

2017-02-03 Thread john
The alias and editor do recognize pipes.
As I said, if you wish to input a pipe character, you need to have two of them.
For example,
quest all || grep -i todo
instead of
quest all | grep -i todo

--
From: "Jude DaShiell" <jdash...@panix.com>
Sent: Friday, February 03, 2017 9:03
To: "Gamers Discussion list" <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

My guess is then the alias editor doesn't recognize or work with pipes 
yet since I wanted to pipe the quest command through grep and everything 
I tried so far hadn't worked.

On Fri, 3 Feb 2017, john wrote:

> Date: Fri, 3 Feb 2017 07:13:46
> From: john <jpcarnemo...@gmail.com>
> Reply-To: Gamers Discussion list <gamers@audyssey.org>
> To: Gamers Discussion list <gamers@audyssey.org>
> Subject: Re: [Audyssey] alteraeon aliases
> 
> The bar is not recognized as a newline character. Rather, you're activating a 
> pipe command.
> To insert the character in text, use two bars.
>
> --
> From: "Jude DaShiell" <jdash...@panix.com>
> Sent: Friday, February 03, 2017 6:49
> To: <gamers@audyssey.org>
> Subject: [Audyssey] alteraeon aliases
>
> I found out the | character is recognized as a newline in the alias
> editor.  I tried defining qt as quest $1| grep TODO and it got split at
> the vertical character into two lines.
> I'm not using mushz but tintin-alteraeon and wanted to see if something
> like this would work.
>
>
>
> --
>
>
> ---
> Gamers mailing list __ Gamers@audyssey.org
> If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
> You can make changes or update your subscription via the web, at
> http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
> All messages are archived and can be searched and read at
> http://www.mail-archive.com/gamers@audyssey.org.
> If you have any questions or concerns regarding the management of the list,
> please send E-mail to gamers-ow...@audyssey.org.
>
> ---
> Gamers mailing list __ Gamers@audyssey.org
> If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
> You can make changes or update your subscription via the web, at
> http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
> All messages are archived and can be searched and read at
> http://www.mail-archive.com/gamers@audyssey.org.
> If you have any questions or concerns regarding the management of the list,
> please send E-mail to gamers-ow...@audyssey.org.
>

-- 


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org. 

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] alteraeon aliases

2017-02-03 Thread Jude DaShiell
My guess is then the alias editor doesn't recognize or work with pipes 
yet since I wanted to pipe the quest command through grep and everything 
I tried so far hadn't worked.


On Fri, 3 Feb 2017, john wrote:


Date: Fri, 3 Feb 2017 07:13:46
From: john <jpcarnemo...@gmail.com>
Reply-To: Gamers Discussion list <gamers@audyssey.org>
To: Gamers Discussion list <gamers@audyssey.org>
Subject: Re: [Audyssey] alteraeon aliases

The bar is not recognized as a newline character. Rather, you're activating a 
pipe command.
To insert the character in text, use two bars.

--
From: "Jude DaShiell" <jdash...@panix.com>
Sent: Friday, February 03, 2017 6:49
To: <gamers@audyssey.org>
Subject: [Audyssey] alteraeon aliases

I found out the | character is recognized as a newline in the alias
editor.  I tried defining qt as quest $1| grep TODO and it got split at
the vertical character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something
like this would work.



--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] alteraeon aliases

2017-02-03 Thread john
The bar is not recognized as a newline character. Rather, you're activating a 
pipe command.
To insert the character in text, use two bars.

--
From: "Jude DaShiell" <jdash...@panix.com>
Sent: Friday, February 03, 2017 6:49
To: <gamers@audyssey.org>
Subject: [Audyssey] alteraeon aliases

I found out the | character is recognized as a newline in the alias 
editor.  I tried defining qt as quest $1| grep TODO and it got split at 
the vertical character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something 
like this would work.



--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org. 

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


[Audyssey] alteraeon aliases

2017-02-03 Thread Jude DaShiell
I found out the | character is recognized as a newline in the alias 
editor.  I tried defining qt as quest $1| grep TODO and it got split at 
the vertical character into two lines.
I'm not using mushz but tintin-alteraeon and wanted to see if something 
like this would work.




--


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.