Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected links that should have been relative instead of absolute.

[01:02:59 CDT(-0500)] * Naenyn (~Naenyn@ip24-56-44-93.ph.ph.cox.net) has joined ##uportal
[01:13:32 CDT(-0500)] * Naenyn (~Naenyn@unaffiliated/sememmon) has joined ##uportal
[06:55:18 CDT(-0500)] * tsnfoo (~tsnfoo@cpe-173-88-27-191.columbus.res.rr.com) has joined ##uportal
[06:57:45 CDT(-0500)] * michelled (~michelled@CPE001310472ade-CM0011aefd3ca8.cpe.net.cable.rogers.com) has joined ##uportal
[07:02:06 CDT(-0500)] * jessm (~Jess@c-68-40-84-116.hsd1.mi.comcast.net) has joined ##uportal
[08:14:44 CDT(-0500)] * JoeMoore (89d880aa@gateway/web/freenode/ip.137.216.128.170) has joined ##uportal
[08:38:29 CDT(-0500)] * tsnfoo (~tsnfoo@cpe-173-88-27-191.columbus.res.rr.com) has joined ##uportal
[09:13:34 CDT(-0500)] * tsnfoo (~tsnfoo@wso-mbp15-2.test.denison.edu) has joined ##uportal
[09:13:59 CDT(-0500)] * tsnfoo_ (~tsnfoo@cpe-173-88-27-191.columbus.res.rr.com) has joined ##uportal
[10:00:15 CDT(-0500)] * holdorph (~holdorph@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[10:01:24 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[10:04:00 CDT(-0500)] * michelled (~michelled@205.211.168.16) has joined ##uportal
[10:08:19 CDT(-0500)] * michelled_ (~michelled@205.211.168.16) has joined ##uportal
[10:12:50 CDT(-0500)] * michelled (~michelled@205.211.168.16) has joined ##uportal
[10:20:50 CDT(-0500)] * lfuller (~sparhk@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[10:31:20 CDT(-0500)] * michelled_ (~michelled@205.211.168.16) has joined ##uportal
[10:34:29 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[10:45:49 CDT(-0500)] * tsnfoo_ (~tsnfoo@wso-mbp15-2.test.denison.edu) has joined ##uportal
[10:46:47 CDT(-0500)] * awills (~awills@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[10:51:00 CDT(-0500)] * michelled (~michelled@205.211.168.16) has joined ##uportal
[12:09:25 CDT(-0500)] * athena (~athena@c-76-121-97-221.hsd1.wa.comcast.net) has joined ##uportal
[12:18:54 CDT(-0500)] * tsnfoo_ (~tsnfoo@cpe-173-88-27-191.columbus.res.rr.com) has joined ##uportal
[13:40:19 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[14:00:26 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[14:09:26 CDT(-0500)] * jessm (~Jess@c-68-40-84-116.hsd1.mi.comcast.net) has joined ##uportal
[14:21:36 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[14:37:26 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[15:03:39 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[16:37:49 CDT(-0500)] <JoeMoore> How do you send multiple crn commands--for example crn-delete
[16:38:21 CDT(-0500)] <JoeMoore> At least with Windows, it's not working for me whether I put them in a .bat file or paste them
[16:41:19 CDT(-0500)] <awills> I would try groovy: http://uportal.pastebin.com/gAYmwvfu
[16:43:55 CDT(-0500)] <holdorph> i'm not sure I understand the problem the .bat file is having that the groovy would not have.
[16:44:15 CDT(-0500)] <holdorph> i'm also not sure what problem you're actually having Joe. You only say it doesn't work
[16:44:21 CDT(-0500)] <holdorph> you don't describe what's failing.
[16:44:34 CDT(-0500)] <JoeMoore> With the batch file, it only executes the first line
[16:44:50 CDT(-0500)] <awills> and then does nothing?
[16:45:37 CDT(-0500)] <holdorph> i think you'd need to use the 'call xyz' bat syntax
[16:45:54 CDT(-0500)] <holdorph> because the thing you're calling from the bat file is another bat file. that's a notorious bat file limitation.
[16:46:21 CDT(-0500)] <holdorph> and that problem WOULD be addressed by groovy, but the .bat file fix is pretty simple too
[16:47:20 CDT(-0500)] <JoeMoore> Oh, I should have tried that off the bat. I've done that before. Going offline...
[16:51:19 CDT(-0500)] <awills> lol @ "the .bat file fix is pretty simple too" – simple in # of characters, sure, but .bat syntax is one of my least favorite among those I occasionally have to work in... i'd move it to groovy just so that (1) i could run it on any platform and (2) i could stop editing a .bat file
[16:52:52 CDT(-0500)] <holdorph> it's simple in terms of number of characters and simplicity overall. it's adding 5 characters of "call " in front of each command.
[16:53:19 CDT(-0500)] <holdorph> yes, .bat is a horrible language, but if all you wanted to do was run 3-5 commands in a row, it's just fine for that job.
[16:53:19 CDT(-0500)] <awills> fair enough (tongue)
[16:53:31 CDT(-0500)] <awills> on windows
[16:54:49 CDT(-0500)] <holdorph> don't ask me to defend windows. I don't use it, if I can avoid it. I'd write it in bash mostly likely if I just needed something to run 4 commands.
[17:07:57 CDT(-0500)] <JoeMoore> Thanks, guys. It took me a few iterations to get the quote marks right--but I think I'm on my way.
[17:08:35 CDT(-0500)] <JoeMoore> Of course, I also needed to fully qualify the ant directory--but that's all normal stuff
[17:21:13 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[17:48:51 CDT(-0500)] * bsparks (~bsparks@wsip-72-215-204-133.ph.ph.cox.net) has joined ##uportal
[22:03:53 CDT(-0500)] * Naenyn (~Naenyn@ip24-56-44-93.ph.ph.cox.net) has joined ##uportal
[22:07:41 CDT(-0500)] * Naenyn (~Naenyn@unaffiliated/sememmon) has joined ##uportal