User Tanktalus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T18:38:47Zhttp://stackoverflow.com/feeds/user/23512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1705421/determining-whether-a-library-archive-for-aix-is-32-bit-64-bit-or-both-from-li1Determining whether a library archive for AIX is 32-bit, 64-bit, or both, from LinuxTanktalus2009-11-10T03:12:09Z2009-11-11T17:17:53Z
<p>On AIX, I would run:</p>
<pre><code>ar -X32 -t libdb2.a
</code></pre>
<p>and check for output to determine if there is a 32-bit object in the archive. Similarly with -X64 for checking for a 64-bit object. However, what about if I'm on another platform, and need to check the archive to see what it has? Usually I'm on Linux when I need to check, but I could just as easily be on Solaris or HP-UX.</p>
<p>I used to check for shr.o and shr_64.o, since that's what's being compiled, but those are starting to show up in actual messages that are in the archives, and thus the reliability of these have dropped to the point where I'm getting false positives.</p>
<p>If anyone has a pointer, preferably something I can do in perl, that'd be great.</p>
http://stackoverflow.com/questions/1132135/is-perl-faster-than-bash/1132682#11326825Answer by Tanktalus for Is Perl faster than bash?Tanktalus2009-07-15T17:08:24Z2009-09-23T13:41:45Z<p>Based on the shell code you have, with multiple calls to tail/head, I'd say <em>absolutely</em> Perl could be faster. C could be even faster, but the development time probably won't be worth it, so I'd stick to Perl. (I say "could" because you can write shell scripts in Perl, and I've seen enough of those to cringe. That obviously wouldn't have the speed benefit that you want.)</p>
<p>Perl has a higher startup cost, or so it's claimed. Honestly, I've never noticed. If your alternative is to do it in Java, Perl has no startup cost. Compared to Bash, I simply haven't noticed. What I have noticed is that as I get away from calling all the specialised Unix tools, which are great when you don't have alternatives, and get toward doing it all in a single process, speed goes up. The overhead of creating new processes on Unix isn't as severe as it may have been on Windows, but it's still not entirely negligible as you have to reinitialise the C runtime library (libC) each time, parse arguments, open files (perhaps), etc. In Perl, you end up using vast swaths of memory as you pass everything around in a list or something, but it is all in memory, so it's faster. And many of the tools you're used to are either built in (<code>map/grep</code>, regexes) or are available in modules on CPAN. A good combination of these would get the job done easily.</p>
<p>The big thing is to avoid re-reading files. It's costly. And you're doing it many times. Heck, you could use the <code>:gzip</code> modifier on open to read your gzip files directly, saving yet another pass - and this would be faster in that you'd be reading less from disk.</p>
http://stackoverflow.com/questions/1370549/is-it-safe-to-remove-open-file/1370583#13705831Answer by Tanktalus for Is it ‘safe’ to remove() open file?Tanktalus2009-09-02T22:57:26Z2009-09-02T22:57:26Z<p>I've always got this to work on Linux/Unix. Never on Windows, OS/2, or (shudder) DOS. Any other platforms you are concerned about?</p>
<p>This behaviour actually is useful in using temporary diskspace - open the file for read/write, and immediately delete it. It gets cleaned up automatically on program exit (for any reason, including power-outage), and makes it much harder (but not impossible) for others to monitor it (/proc can give clues, if you have read access to that process).</p>
http://stackoverflow.com/questions/255201/splitting-development-of-new-versions-from-on-going-fixes-of-in-the-field-version1Splitting development of new versions from on-going fixes of in-the-field versions?Tanktalus2008-10-31T22:55:11Z2009-09-01T21:01:26Z
<p>At $work, we've recently (as in three or four years ago now) split our development organisation in two (but not half): one group to develop the Next Big Thing (NBT), and the other group to handle customer-reported problems, diagnose them, and check in the fixes for the regularly-scheduled patches (development support, or DS). And the second group will then merge the changes into the NBT release as well.</p>
<p>Allegedly, this is to help the NBT team better plan the NBT - by having their developers not being distracted by customers, planning how much of their attention can be paid to the NBT product is theoretically easier. It also is supposed to help customers by having developers specialise in supporting customers.</p>
<p>What are your thoughts/experiences on such a split? Would you prefer this model? Would it cause you to look for further employment elsewhere? What are the pros and cons?</p>
<p>In my experience so far, I'm finding that:</p>
<ul>
<li>some people have quit (or, rather, forced their manager to lay them off) Others seem to prefer this (I'm not sure why)</li>
<li>the NBT group is further removed from customers resulting in:
<ul>
<li>less understanding of what pain points customers really have</li>
<li>less understanding of where customers are getting confused by the interface (whether graphical or command-line or whatever)</li>
<li>less ability to respond to stupid requirements with customer-related retorts</li>
</ul></li>
<li>The DS group is responsible for passing on what is learned from the customer to the NBT group.
<ul>
<li>I don't know how you learn, but me and apparently most of our DS group seems to learn by experience better than by being told. So only a portion of the information will be retained relative to not having this split.</li>
<li>It's impossible to remember everything from a two-week customer engagement to report back to the NBT group anyway, but if DS and NBT were a single group, Stupid Requirements would trigger the memory. So stuff we could have learned is never used.</li>
</ul></li>
<li>The planning of the NBT is failing as too many Stupid Requirements have come in, and the NBT team has asked our DS team for extra help. The flexibility that this split has removed is still required.</li>
</ul>
<p>As you might be able to guess, I'm trying to make a case for re-merging the teams. However, I do recognise that my perspective may be getting the better of me, so I'm open to the reverse discussion: how this is helpful to the development process, and, ultimately, the customer. If you have positive experiences, I really would like to hear them, too.</p>
http://stackoverflow.com/questions/256561/concept-of-data-directory-on-each-platform0Concept of "Data Directory" on each platformTanktalus2008-11-02T05:32:08Z2009-09-01T20:56:51Z
<p>This is very similar to <a href="http://stackoverflow.com/questions/57019/where-should-cross-platform-apps-keep-their-data" rel="nofollow" title="Where should cross-platform apps keep their data?">Where should cross-platform apps keep their data?</a>, but expanding on it a bit.</p>
<p>There is some good advice on where the parent directory for data should be, but not so much on <em>what</em> a given app's directory should be.</p>
<p>For example, let's say we have a cross-platform application, written by My Corp, within My Brand, called My App. Assume there are other products in My Brand which presumably want their own data, and other brands in My Corp as well. Where should its data and/or configuration go on Windows? On Unix? Mac OS9? Mac OSX? Other?</p>
<p>e.g., on Windows, would the data go in "...\Application Data\My Corp\My Brand\My App", while on Mac OS X the data would go into ~/Library/Application Support/My Corp/My Brand/My App" and on Unix it would go into "~/.mycorp/mybrand/myapp"? (I would imagine other platforms would use the mangling of unix, even if the base directory may be different.)</p>
<p>If there is no real convention, does this seem reasonable? Any suggestions for Mac OS9?</p>
http://stackoverflow.com/questions/1275828/how-can-i-refactor-away-this-repeated-series-of-if-blocks/1275876#127587614Answer by Tanktalus for How can I refactor away this repeated series of "if" blocks?Tanktalus2009-08-14T03:15:48Z2009-08-14T13:48:15Z<p>The names look suspicious, too. If you're looping through the columns, try the magic ++ operator.</p>
<pre><code>my $colname = 'A';
for (0..$#cols)
{
# do stuff with $colname
$buffer{$colname} = trim($val);
++$colname;
}
</code></pre>
<p>If not, there does seem to be a pattern here that you can exploit for converting numbers from decimal (digital) to alphabetic. You'd do it the same way you'd convert a digital number to decimal, except that you'd use characters A-Z, base 26, instead of 0-9, base 10. Something like:</p>
<pre><code>sub colname
{
my $num = shift;
my $name = '';
while ($num)
{
$name .= chr(ord('A') + $num % 26);
$num /= 26;
}
reverse $name;
}
</code></pre>
<p>(untested) This algorithm is language-neutral. It doesn't particularly take advantage of perlishness, but works wonderfully as a general-case.</p>
<p><strong>Update</strong>: I told you this was untested. j_random_hacker pointed out the thinko, and I've corrected it. Thanks!</p>
http://stackoverflow.com/questions/1240636/symlink-copying-a-directory-hierarchy/1256804#12568040Answer by Tanktalus for symlink-copying a directory hierarchyTanktalus2009-08-10T19:41:13Z2009-08-10T19:41:13Z<p>I know the question was regarding shell, but since you can call perl from shell, I wrote a tool to do something very similar to this, and <a href="http://www.perlmonks.org/index.pl?node%5Fid=536098" rel="nofollow">posted it</a> on <a href="http://www.perlmonks.org" rel="nofollow">perlmonks</a> a few years ago. In my case, I generally wanted directories to remain links until I decide otherwise. It'd be a fairly trivial change to do this automatically and recursively.</p>
http://stackoverflow.com/questions/1087145/packaging-perl-modules-with-config-files/1088719#10887191Answer by Tanktalus for Packaging Perl modules with Config files?Tanktalus2009-07-06T19:08:08Z2009-07-06T19:08:08Z<p>To find the home directory, see <a href="http://search.cpan.org/search?query=file::homedir&mode=module" rel="nofollow">File::HomeDir</a>. You'll not want to use ~ (since that's a shell thing anyway).</p>
<p>I would suggest having your module work without the rc file as much as possible. If it doesn't exist, the code should fall back to defaults. This should be true, too, even if the file exists, but a particular flag is missing - it should fall back to the default, too.</p>
<p>You may want to look at <a href="http://search.cpan.org/search?mode=module&query=config::any" rel="nofollow">Config::Any</a> while you're at it. No point reinventing that wheel.</p>
http://stackoverflow.com/questions/150043/python-v-perl/150085#15008515Answer by Tanktalus for Python v. PerlTanktalus2008-09-29T18:46:56Z2009-07-02T17:09:59Z<p>I use perl and never learned python. But I come from a background of shell scripting with awk/grep, and C/C++. That made perl just far too easy to pick up, as it has nearly all the power of all that came before, and ties it together really simply.</p>
<p>So, it's really hard to answer without a lot more context: do you have any perl/python tooling/programmers available to you at work? Perlmonks.org, for example, is great as a language-specific site, though it's still better to have someone to talk with right in front of you instead of waiting for responses. What do you want to accomplish? I know you said you don't have a specific task, but I have always found it easier to pick up new skills by having a target in mind. I had little mini-projects that helped me learn C, C++, STL, Perl, and just recently SQL. They make it fun to learn, and anything fun is easier. So find a project that makes sense for what you're learning, and try it. The questions you come up with from there will propel you into whichever language you're learning.</p>
http://stackoverflow.com/questions/1057343/how-do-i-automatically-set-the-display-variable-for-my-current-session/1059305#10593050Answer by Tanktalus for How do i automatically set the $DISPLAY variable for my current sessionTanktalus2009-06-29T16:46:50Z2009-06-29T16:46:50Z<p>I'm guessing here, based on issues I've had in the past which I did solve:</p>
<ul>
<li>you're connecting to a vnc server on machine B, displaying it using a VNC client on machine A</li>
<li>you're launching a console (xterm or equivalent) on machine B and using that to connect to machine C</li>
<li>you want to launch an X-based application on machine C, having it display to the VNC server on machine B, so you can see it on machine A.</li>
</ul>
<p>I ended up with two solutions. My original solution was based on using rsh. Since then, most of our servers have had ssh installed, which has made this easier.</p>
<p>Using rsh, I put together a table of machines vs OS vs custom options which would guide this process in perl. Bourne shell wasn't sufficient, and we don't have bash on Sun or HP machines (and didn't have bash on AIX at the time - AIX 5L wasn't out yet). Korn shell wasn't much of an option, either, since most of our Linux boxes don't have pdksh installed. But, if you don't face these limitations, you can implement the idea in ksh or bash, I think.</p>
<p>Anyway, I would basically run 'rsh $machine -l $user "$cmd"' where $machine, of course, was the machine I was logging in to, $user, similarly obvious (though when I was going in as "root" this had some variance as we have multiple roots on some machines for reasons I don't fully understand), and $cmd was basically "DISPLAY=$DISPLAY xterm", though if I were launching konsole, for example, $cmd would be "konsole --display=$DISPLAY". Since $DISPLAY was being evaluated locally (where it's set properly), and not being passed literally across rsh, the display would always be set correctly.</p>
<p>I also had to make sure that no one did anything silly like reset DISPLAY if it was already set.</p>
<p>Now, I just use ssh, make sure that X11Forwarding is set to yes on the server (sshd_config), and then I can just ssh to the machine, let X commands go across the wire encrypted, and it'll always go back to the right place.</p>
http://stackoverflow.com/questions/1058433/exporting-result-of-select-statement-to-csv-format-in-db2/1059128#10591280Answer by Tanktalus for Exporting result of select statement to CSV format in DB2Tanktalus2009-06-29T16:07:06Z2009-06-29T16:07:06Z<p>According to <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0008303.html" rel="nofollow">the docs</a>, you want to export of type del (the default delimiter looks like a comma, which is what you want). See the doc page for more information on the EXPORT command.</p>
http://stackoverflow.com/questions/1048743/using-perl-how-can-i-rename-files-in-all-subdirectories-of-a-drive/1050005#10500051Answer by Tanktalus for Using Perl, how can I rename files in all subdirectories of a drive?Tanktalus2009-06-26T16:17:44Z2009-06-27T20:51:00Z<pre><code>find . -name '*.wm[va]' -a -type f -exec mv '{}' '{}.txt' \;
</code></pre>
<p>Ok, there are two basic problems with the above. First off, it's find, not perl. Second, it's actually just putting the .txt at the end, not quite what you wanted.</p>
<p>The first problem is only a problem if you really must do this in perl. Which probably means you're just learning perl, but that's ok, because it's merely a first step. The second is only a problem if you merely want to get the job done and don't care about the language. I'll solve the second problem first:</p>
<pre><code>find . -name '*.wm[va]' -a -type f | while read f; do mv $f ${f%.*}; done
</code></pre>
<p>That just gets the job done, but actually moves us away from a perl solution. That's because, if you get it all done in find, you can convert to perl with find2perl:</p>
<pre><code>find . -name '*.wm[va]' -a -type f -exec mv '{}' '{}.txt' \;
</code></pre>
<p>This will print out a perl script, which you can save:</p>
<pre><code>find2perl . -name '*.wm[va]' -a -type f -exec mv '{}' '{}.txt' \; > my.pl
</code></pre>
<p>It includes a doexec() function which can be modified to do what you want. First would be to change the second argument to the right name (using <a href="http://search.cpan.org/~nwclark/perl-5.8.9/lib/File/Basename.pm" rel="nofollow">File::Basename</a>'s basename function: basename($command[2], qw/.wmv .wma/) ), the second would be just to eliminate the calls to system, STDOUT munging, etc., and just call rename. But this at least gives you a start.</p>
http://stackoverflow.com/questions/1050089/get-remote-text-file-process-and-update-database-approach-and-scripting-langu/1050150#10501503Answer by Tanktalus for Get remote text file, process, and update database - approach and scripting language to use?Tanktalus2009-06-26T16:58:06Z2009-06-26T18:37:35Z<p>Kind of depends on the format of the files you're ftp'ing. If it's a crazy proprietary format, you might be stuck with whatever language already has a library managing it. If it's CSV or XML, then any language might do.</p>
<ul>
<li>FTP: <a href="http://search.cpan.org/~gbarr/libnet-1.22/Net/FTP.pm" rel="nofollow">Net::FTP</a></li>
<li>Parse: <a href="http://search.cpan.org/~hmbrand/Text-CSV%5FXS-0.65/CSV%5FXS.pm" rel="nofollow">Text::CSV_XS</a> (for CSV or tab-separated) or <a href="http://xmltwig.com" rel="nofollow">XML::Twig</a> (for XML)</li>
<li>Insert: <a href="http://search.cpan.org/~timb/DBI-1.609/DBI.pm" rel="nofollow">DBI</a> with your appropriate db driver, though there are higher level wrappers, too, such as <a href="http://search.cpan.org/~ribasushi/DBIx-Class-0.08107/lib/DBIx/Class.pm" rel="nofollow">DBIx::Class</a>.</li>
</ul>
<p>Just as examples. It seems pretty straight-forward, but I do perl nearly every day ;-)</p>
http://stackoverflow.com/questions/1048070/substituting-text-in-a-file-within-a-perl-script/1050070#10500700Answer by Tanktalus for Substituting text in a file within a Perl scriptTanktalus2009-06-26T16:34:38Z2009-06-26T16:34:38Z<p>The most trivial part is simply to stop executing a command as a single string. Get the shell out of it. Assuming your execute_command function just calls system under the covers, try:</p>
<pre><code>execute_command(qw/perl -pi -e/, 's/^SERVERNAME.*$/SERVERNAME "\Q$Pref\E"/g', "$DIR/pserver.prefs");
</code></pre>
<p>That's better, but not perfect. After all, the user could put in something silly like "@[system qw:rm -rf /:]" and then silly things would happen. I think there are ways around this, too, but the most trivial might be to simply do the work inside your code. How to do that? Maybe starting with what perl is doing with the "-pi" flags might help. Let's take a peek:</p>
<pre><code>$ perl -MO=Deparse -pi -e 's/^SERVERNAME.*$/SERVERNAME "\Qfoo\E"/'
BEGIN { $^I = ""; }
LINE: while (defined($_ = <ARGV>)) {
s/^SERVERNAME.*$/SERVERNAME "foo"/;
}
continue {
print $_;
}
</code></pre>
<p>Maybe you can do the same thing in your code? Not sure how easy that is to replicate, especially that $^I bit. Worst case scenario, read the file, write to a new file, delete the original file, rename the new file to the original name. That'll help get rid of all the exposures of passing dangerous junk around.</p>
http://stackoverflow.com/questions/1039853/why-is-the-c-stl-is-so-heavily-based-on-templates-and-not-on-interfaces/1039906#10399060Answer by Tanktalus for Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)Tanktalus2009-06-24T17:53:11Z2009-06-24T17:53:11Z<p>How do you do comparisons with ForwardIterator*'s? That is, how do you check if the item you have is what you're looking for, or you've passed it by?</p>
<p>Most of the time, I would use something like this:</p>
<pre><code>void MyFunc(ForwardIterator<MyType>& i)
</code></pre>
<p>which means I know that i is pointing to MyType's, and I know how to compare those. Though it looks like a template, it isn't really (no "template" keyword).</p>
http://stackoverflow.com/questions/1039601/in-perl-how-do-you-dynamically-pick-what-method-to-use-as-a-callback/1039648#10396486Answer by Tanktalus for In Perl how do you dynamically pick what method to use as a callback?Tanktalus2009-06-24T17:00:49Z2009-06-24T17:00:49Z<pre><code>my $ref = $obj->can('blat');
</code></pre>
<p>If $ref is undef, your object can't blat. If $ref is not undef, it's a valid CODE reference to the function in question, suitable for calling "$obj->$ref(@args)".</p>
http://stackoverflow.com/questions/1033495/set-the-language-for-a-single-program-execution/1033513#10335133Answer by Tanktalus for Set the language for a single program execution.Tanktalus2009-06-23T15:58:54Z2009-06-23T15:58:54Z<p>You mean something like:</p>
<pre><code>LANG=es_MX.utf8 ./hellogt
</code></pre>
<p>? Or maybe you mean you want to parse the commandline (argv), find the language passed in, and pass it to setlocale?</p>
http://stackoverflow.com/questions/1032431/why-isnt-my-perl-dbi-subclass-working/1032520#10325204Answer by Tanktalus for Why isn't my Perl DBI subclass working?Tanktalus2009-06-23T13:16:28Z2009-06-23T13:16:28Z<p>My suspicion would be that the connect failed, thus the $dbh is undef. Since you don't show us your connect code, we can't be sure that you're handling error conditions there properly.</p>
http://stackoverflow.com/questions/794728/variables-as-commands-in-bash-scripts/794823#7948230Answer by Tanktalus for Variables as commands in bash scriptsTanktalus2009-04-27T18:58:09Z2009-04-27T18:58:09Z<p>Quoting spaces inside variables such that the shell will re-interpret things properly is <em>hard</em>. It's this type of thing that prompts me to reach for a stronger language. Whether that's perl or python or ruby or whatever (I choose perl, but that's not always for everyone), it's just <em>something</em> that will allow you to bypass the shell for quoting.</p>
<p>It's not that I've never managed to get it right with liberal doses of eval, but just that eval gives me the eebie-jeebies (becomes a whole new headache when you want to take user input and eval it, though in this case you'd be taking stuff that you wrote and evaling that instead), and that I've gotten headaches in debugging.</p>
<p>With perl, as my example, I'd be able to do something like:</p>
<pre><code>@tar_cmd = qw(tar cv), $directory;
@encrypt_cmd = qw(openssl des3 -salt);
@split_cmd = qw(split -b 1024m -) $backup_file;
</code></pre>
<p>The hard part here is doing the pipes - but a bit of <a href="http://search.cpan.org/~gbarr/IO-1.2301/IO/Pipe.pm" rel="nofollow">IO::Pipe</a>, fork, and reopening stdout and stderr, and it's not bad. Some would say that's worse than quoting the shell properly, and I understand where they're coming from, but, for me, this is easier to read, maintain, and write. Heck, someone could take the hard work out of this and create a IO::Pipeline module and make the whole thing trivial ;-)</p>
http://stackoverflow.com/questions/793765/how-to-go-about-learning-perl/794123#7941230Answer by Tanktalus for How to go about learning perlTanktalus2009-04-27T15:45:46Z2009-04-27T15:45:46Z<p>My experience is that there's nothing better for learning than doing. But you need someone to provide feedback, especially when you hit roadblocks that you can't get past. Stackoverflow is good for that, but, IME, <a href="http://www.perlmonks.org" rel="nofollow">Perlmonks</a> is better in that there is a chatterbox for immediate feedback, as well as their question-and-answer posts for longer questions, combined with a more specialised environment. (And Larry Wall has been rumoured to hang out there, too, as well as a number of the authors of the above-referred-to books.)</p>
http://stackoverflow.com/questions/792474/matching-text-in-quotes-newbie/794106#7941060Answer by Tanktalus for matching text in quotes (newbie)Tanktalus2009-04-27T15:41:01Z2009-04-27T15:41:01Z<p>As long as someone is pointing out sed/awk, I'm going to point out that grep is redundant.</p>
<pre><code>sed -ne '/^zone/{s/.*"\([^"]*\)".*/\1/;p}' /etc/bind/named.conf
</code></pre>
<p>This gives you what you're looking for without the quotes (move the quotes inside the parenthesis to keep them). In awk, it's even simpler with the quotes:</p>
<pre><code>awk '/^zone/{print $2}' /etc/bind/named.conf
</code></pre>
<p>I try to avoid pipelines as much as possible (but not more). Remember, <a href="http://unixfoo.blogspot.com/2007/11/dont-pipe-cat.html" rel="nofollow">Don't pipe cat</a>. It's not needed. And, insomuch as awk and sed duplicating grep's work, don't pipe grep, either. At least, not into sed or awk.</p>
<p>Personally, I'd probably have used perl. But that's because I probably would have done the rest of whatever you're doing in perl, making it a minor detail (and being able to slurp the whole file in and regex against everything simultaneously, ignoring \n's would be a bonus for cases where I don't control /etc/bind, such as on a shared webhost). But, if I were to do it in shell, one of the above two would be the way I'd approach it.</p>
http://stackoverflow.com/questions/780072/why-does-my-command-line-not-run-from-cron/780090#7800902Answer by Tanktalus for Why does my command-line not run from cron?Tanktalus2009-04-23T02:26:14Z2009-04-23T02:26:14Z<p>If you're looking at %ENV in the two cases, I'd suggest that, as a first step in your perl script, set %ENV to what it is in a cron job, and then trying to run it from the command line. You may need to exec yourself once for this to take full control:</p>
<pre><code>BEGIN {
if (exists $ENV{something_in_your_env_not_in_cron}) {
%ENV = (...);
exec $^X, $0, @ARGV;
}
}
</code></pre>
<p>Now try running it, and seeing if there's anything you can do to debug it (including running under perl -d if required). Most likely, you'll find that you end up adding items back into %ENV one at a time until it magically starts working (LD_LIBRARY_PATH is a good one for this, but ORACLE_HOME or DB2HOME for Oracle or DB2 apps might be good choices, too). Then you can either set the variable in your script, or in the crontab.</p>
http://stackoverflow.com/questions/777543/how-can-i-read-the-error-output-of-external-commands-in-perl/777555#7775552Answer by Tanktalus for How can I read the error output of external commands in Perl?Tanktalus2009-04-22T14:42:53Z2009-04-22T14:47:57Z<p>Check <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow">perlvar for $?</a>. If it's set to 0, there were no signals, and the return code from the program is also zero. That's probably what you want.</p>
<p>In this case, you could even just use <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow">system</a> and check its return value for being zero, while redirecting the stdout and stderr to /dev/null.</p>
http://stackoverflow.com/questions/770515/what-are-the-advantages-of-rsh-versus-perls-expect-pm/777142#7771421Answer by Tanktalus for What are the advantages of rsh versus Perl's Expect.pm?Tanktalus2009-04-22T13:10:47Z2009-04-22T13:10:47Z<p>I can see multiple ways of doing this:</p>
<ul>
<li>Expect over telnet, rsh, or ssh
<ul>
<li>pros: single connection, fewer escaping issues</li>
<li>cons: fragility in a changing environment</li>
</ul></li>
<li>rsh/ssh each command individually
<ul>
<li>pros: fewer escaping issues, more reliable in a changing environment</li>
<li>cons: each connection takes time for authentication, and, for ssh, handshaking the encryption</li>
</ul></li>
<li>rsh/ssh all commands at once
<ul>
<li>pros: single connection (less overhead), more reliable than expect</li>
<li>cons: fragility in maintenance especially as you get more than a handful of statements in there, escaping issues are more prevalent (escape in perl so that it's still escaped by rsh/ssh so that it's still escaped by the remote shell so that it's properly handled by the sudo'd remote shell?)</li>
</ul></li>
<li>rsh/ssh and run a script
<ul>
<li>pros: single connection, more reliable, more maintainable</li>
<li>cons: finding a way to get it over there (rcp/scp work, NFS works, you need to determine the best way for you).</li>
</ul></li>
</ul>
<p>All things considered, this is the most minor con as you could simply do something like</p>
<pre><code> open my $fh, "|ssh user@host 'cat > /tmp/myscript'";
print $fh $script;
system qw(ssh user@host), "chmod u+x /tmp/myscript; /tmp/myscript; rm /tmp/myscript";
</code></pre>
<p>Of course, you'd add in some error handling (failed open, what if /tmp/myscript exists, etc.), but that's the idea.</p>
http://stackoverflow.com/questions/774769/select-the-first-row-in-a-join-of-two-tables-in-one-statement/774913#7749130Answer by Tanktalus for Select the first row in a join of two tables in one statementTanktalus2009-04-21T22:23:23Z2009-04-21T22:23:23Z<p>If you can add to a temp table and then query from that, you can do it in one go.</p>
<pre><code>WITH T AS (temp table select), RN AS (select min row-numbers from T) SELECT T.NAME, T.DATA1, T.DATA2 FROM T INNER JOIN RN on T.row_number = RN.row_number
</code></pre>
<p>There are many other ways to write this, but that's how I've been doing similar things.</p>
http://stackoverflow.com/questions/774861/is-there-a-perl-module-for-parsing-columnar-text/774869#7748692Answer by Tanktalus for Is there a Perl module for parsing columnar text?Tanktalus2009-04-21T22:13:57Z2009-04-21T22:13:57Z<p>I'd start with <a href="http://search.cpan.org/~jzucker/DBD-CSV-0.22/lib/DBD/CSV.pm" rel="nofollow">DBD::CSV</a> if possible, though your "stacked" requirement (which I don't fully understand) probably would require some manual parsing, using <a href="http://search.cpan.org/~hmbrand/Text-CSV%5FXS-0.64/CSV%5FXS.pm" rel="nofollow">Text::CSV_XS</a>.</p>
<p>Don't be fooled by their names - they can parse with any separators, not just commas.</p>
http://stackoverflow.com/questions/772710/will-perl-upgrade-break-older-version-on-linux/774614#7746143Answer by Tanktalus for Will Perl upgrade break older version on Linux?Tanktalus2009-04-21T21:06:44Z2009-04-21T21:06:44Z<p>I've never seen this problem on Linux. I leave the original perl in its location (/usr/bin/perl), and simply compile my own perl to install to /usr/local/bin (or whatever), and have never seen any breakage of the old version.</p>
<p>You don't say</p>
<ul>
<li>how you came to have a /usr/standard_perl/perl588 (compiled, given in rpm format or something, pre-compiled tarball, ...)</li>
<li>what options you used when configuring the compilation</li>
</ul>
<p>You're also very vague with your details - perl58_link, standard_perl, etc. - where is this really? Most of the time it doesn't matter, but sometimes it does.</p>
<p>If you move the link back, do things start to work? If you move the entire 5.8.8 tree somewhere else, do things start to work? Can you recover your base perl from RPM or whatever to try to make it work? IMO, the base perl working is paramount, a secondary perl is always bonus. (I'd take the same opinion of other core unix tools, like shells, awk, sed, or even python or whatever your distro uses for package management. Less so for non-core tools like Java, but if I were running Java apps in production then I'd say the same here, too.)</p>
http://stackoverflow.com/questions/773947/how-to-you-determine-when-windows-is-done-rebooting/773963#7739631Answer by Tanktalus for How to you determine when Windows is done rebooting?Tanktalus2009-04-21T18:31:02Z2009-04-21T18:31:02Z<p>A more general version of this question is <a href="http://stackoverflow.com/questions/194104/how-do-i-know-if-a-system-has-powered-on">How do I know if a system has powered on?</a></p>
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/773496#7734964Answer by Tanktalus for Can you provide an example of parsing HTML with your favorite parser?Tanktalus2009-04-21T16:31:44Z2009-04-21T16:45:45Z<p>language: Perl<br />
library: <a href="http://search.cpan.org/dist/XML-Twig/Twig.pm" rel="nofollow">XML::Twig</a></p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Encode ':all';
use LWP::Simple;
use XML::Twig;
#my $url = 'http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser';
my $url = 'http://www.google.com';
my $content = get($url);
die "Couldn't fetch!" unless defined $content;
my $twig = XML::Twig->new();
$twig->parse_html($content);
my @hrefs = map {
$_->att('href');
} $twig->get_xpath('//*[@href]');
print "$_\n" for @hrefs;
</code></pre>
<p>caveat: Can get wide-character errors with pages like this one (changing the url to the one commented out will get this error), but the HTML::Parser solution above doesn't share this problem.</p>
http://stackoverflow.com/questions/772935/how-to-execute-a-unix-shell-script-from-windows/772993#7729935Answer by Tanktalus for How to execute a Unix shell script from WindowsTanktalus2009-04-21T14:57:03Z2009-04-21T15:17:03Z<p>Install cygwin. Include the ssh function. Set up your ssh keys - private key on windows, public key on the AIX box. Then you can run "ssh user@aixbox script-on-aix-box.sh".</p>
<p>Best to have the script on AIX, though you can use scp to copy the file to AIX first. Passing a long command line through ssh is error prone - not due to it being ssh, but because getting escapes properly set up to pass from .NET through ssh to ksh or whatever is running on AIX is just painful. Best to keep things as simple as possible, preferably just a single command which can then be a script that does multiple things.</p>
<p>To answer your comments, which would take too long for another comment:</p>
<p>(1) Why is it better to use cygwin's ssh utility instead of the Windows ssh utility?</p>
<p>a) I know it better, so I wouldn't know to suggest any windows ssh utility (I didn't even know Windows came with an ssh utility), and b) cygwin's ssh utility stands a better chance of being standard ssh with all the familiarity us unix freaks love. :-)</p>
<p>(2) What are the keys for? Does that allow cross-platform authentication, or is it just a way of asymmetrically encrypting the password?</p>
<p>The keys allow passwordless access. If you set up your private key as passwordless (not usually recommended, but if you can keep your machine secure, it works well for automated tools), your tool will be able to just ssh over with no password prompts - this makes things much easier.</p>
http://stackoverflow.com/questions/1718412/find-out-type-of-c-void-pointer/1718436#1718436Comment by Tanktalus on Find out Type of C++ Void PointerTanktalus2009-11-11T22:17:20Z2009-11-11T22:17:20ZThe OP is looking for RTTI, and that doesn't apply to void*. Template is the answer.http://stackoverflow.com/questions/1705421/determining-whether-a-library-archive-for-aix-is-32-bit-64-bit-or-both-from-li/1716707#1716707Comment by Tanktalus on Determining whether a library archive for AIX is 32-bit, 64-bit, or both, from LinuxTanktalus2009-11-11T22:15:12Z2009-11-11T22:15:12ZI didn't get that name, but that's irrelevant. The newly-built ar didn't like -X32, -X64, or -X32_64, pretty much ignoring them. But, I might be able to just look at the filenames coming out and assume they follow our standards, so, unless someone else has a better idea, this is probably going to be the long-term solution we go with, if we can get "recompile binutils and put it somewhere public" past our lawyers.http://stackoverflow.com/questions/1707198/validation-tool-for-shell-scripting/1707252#1707252Comment by Tanktalus on validation tool for shell scriptingTanktalus2009-11-10T21:35:52Z2009-11-10T21:35:52ZAlthough I use perl as my shell replacement, +1 just for saying "move away from shell".http://stackoverflow.com/questions/1705421/determining-whether-a-library-archive-for-aix-is-32-bit-64-bit-or-both-from-li/1705653#1705653Comment by Tanktalus on Determining whether a library archive for AIX is 32-bit, 64-bit, or both, from LinuxTanktalus2009-11-10T17:09:35Z2009-11-10T17:09:35ZOk, how do I extract a .o file from the archive on Linux? ar isn't seeming to be willing to do so.http://stackoverflow.com/questions/1370549/is-it-safe-to-remove-open-file/1370583#1370583Comment by Tanktalus on Is it ‘safe’ to remove() open file?Tanktalus2009-09-02T23:22:44Z2009-09-02T23:22:44ZDo you have a link?http://stackoverflow.com/questions/255201/splitting-development-of-new-versions-from-on-going-fixes-of-in-the-field-version/255265#255265Comment by Tanktalus on Splitting development of new versions from on-going fixes of in-the-field versions?Tanktalus2009-09-01T21:03:06Z2009-09-01T21:03:06ZWouldn't those forest fires be an indication that continued work on the NBT might create a Big Ball of Mud, and thus the kick in the pants that is the lost momentum might actually be a Good Thing?http://stackoverflow.com/questions/1297224/how-do-i-shuffle-two-arrays-in-exactly-the-same-way-in-perl/1297267#1297267Comment by Tanktalus on How do I shuffle two arrays in exactly the same way in Perl?Tanktalus2009-08-19T02:34:23Z2009-08-19T02:34:23Z+1 for pointing out that you shouldn't have parallel arrays, but arrays of something else (arrays, hashes, objects, whatever) that keep the data together physically.http://stackoverflow.com/questions/1279953/how-to-execute-the-output-of-a-command-within-the-current-shell/1280864#1280864Comment by Tanktalus on How to execute the output of a command within the current shell?Tanktalus2009-08-17T22:25:44Z2009-08-17T22:25:44ZThe only issue here is that you may need to insert ;'s to separate your commands. I use this method myself to work on AIX, Sun, HP, and Linux.http://stackoverflow.com/questions/1041362/when-is-it-appropriate-to-use-delete-this/1041367#1041367Comment by Tanktalus on When is it appropriate to use "delete this"?Tanktalus2009-06-24T22:47:27Z2009-06-24T22:47:27Z@Paul: The original question didn't sound like GC. This answer does. Except that instead of scouring addresses to figure out what's not referenced anymore, you're adding yourself to the list of garbage to be collected at the next available cycle.http://stackoverflow.com/questions/1041362/when-is-it-appropriate-to-use-delete-this/1041367#1041367Comment by Tanktalus on When is it appropriate to use "delete this"?Tanktalus2009-06-24T22:39:38Z2009-06-24T22:39:38Zoh, sounds like garbage collection! :-)http://stackoverflow.com/questions/1039853/why-is-the-c-stl-is-so-heavily-based-on-templates-and-not-on-interfaces/1039906#1039906Comment by Tanktalus on Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)Tanktalus2009-06-24T21:20:18Z2009-06-24T21:20:18ZDepending on the context, those may not make any sense, or they may work fine. Hard to tell without knowing more about MyType, which, presumable, the user does, and we don't.http://stackoverflow.com/questions/1040291/parsing-comma-separated-lines-and-calculating-sum/1040392#1040392Comment by Tanktalus on Parsing comma separated lines and calculating sumTanktalus2009-06-24T19:35:38Z2009-06-24T19:35:38ZAdd a reference to Text::CSV_XS, and this is the perfect response, IMO.http://stackoverflow.com/questions/1033495/set-the-language-for-a-single-program-execution/1033513#1033513Comment by Tanktalus on Set the language for a single program execution.Tanktalus2009-06-23T17:48:35Z2009-06-23T17:48:35ZSo, the first one.http://stackoverflow.com/questions/1030210/launch-x-windows-on-client-machine/1030598#1030598Comment by Tanktalus on launch X windows on client machineTanktalus2009-06-23T15:43:17Z2009-06-23T15:43:17Z+1 just for the win98 reference, thanks :-)http://stackoverflow.com/questions/204991/remove-empty-directory-from-cvs/205081#205081Comment by Tanktalus on Remove empty directory from CVS?Tanktalus2009-06-22T22:18:22Z2009-06-22T22:18:22ZThanks. This helped me undo damage done by some idjut at work.