Delete tickets?

Hi,

How can i delete a large number of tickets ? (The kill button take a
long time to do…)

Thanx.
Jean Martial LE MAGOROU
AKIO-SOLUTIONS
174 Quai de Jemappes
75010 Paris
Tel : 01 44 52 83 20
jmlm@akio-solutions.com
www.akio-solutions.com

With RT1, there isn’t a real easy way to scrip the deletion of lots of tickets :/On Fri, Oct 13, 2000 at 04:00:31PM +0200, LE MAGOROU Jean Martial wrote:

Hi,

How can i delete a large number of tickets ? (The kill button take a
long time to do…)

Thanx.

Jean Martial LE MAGOROU
AKIO-SOLUTIONS
174 Quai de Jemappes
75010 Paris
Tel : 01 44 52 83 20
jmlm@akio-solutions.com

www.akio-solutions.com


rt-users mailing list
rt-users@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users

jesse reed vincent — root@eruditorum.orgjesse@fsck.com
pgp keyprint: 50 41 9C 03 D0 BC BC C8 2C B9 77 26 6F E1 EB 91
<Dr_Memory> the point is that words were exchanged. neurolinguistic
programming will do the rest. they should be showing up at my house
any day now.

“J” == Jesse jesse@fsck.com writes:
J> With RT1, there isn’t a real easy way to scrip the deletion of lots
J> of tickets :confused:

Shell scripting.

for x in 1 2 3 4; do rt -kill %x; done

Except rt -kill requires you to type “yes” on the next line. which is
certainly scriptable too. but that script won’t do it.On Mon, Oct 16, 2000 at 05:01:06PM -0400, Robert Spier wrote:

“J” == Jesse jesse@fsck.com writes:
J> With RT1, there isn’t a real easy way to scrip the deletion of lots
J> of tickets :confused:

Shell scripting.

for x in 1 2 3 4; do rt -kill %x; done

jesse reed vincent — root@eruditorum.orgjesse@fsck.com
pgp keyprint: 50 41 9C 03 D0 BC BC C8 2C B9 77 26 6F E1 EB 91
“Mary had a crypto key / She kept it in escrow
And everything that Mary said / The Feds were sure to know” – Sam Simpson

“J” == Jesse jesse@fsck.com writes:
J> Except rt -kill requires you to type “yes” on the next line. which
J> is certainly scriptable too. but that script won’t do it.

True.

echo “yes” | rt -kill $x

Or something.