Search Results

Search: Posts Made By: sledmouth
6,738
Posted By sledmouth
If iTunes XML is anything like Rhythmbox XML,...
If iTunes XML is anything like Rhythmbox XML, there will be attributes which include systime of when the file was imported. If I were you, I would create a hash while parsing/printing the first XML...
36,789
Posted By sledmouth
shortname=`echo ${textArray[$i]} | awk '{print...
shortname=`echo ${textArray[$i]} | awk '{print $1}'`
5,421
Posted By sledmouth
don't need the split, actually... perl -e...
don't need the split, actually...

perl -e 'print "Enter word to reverse:\n";chomp(my $in=<STDIN>);print reverse($in)."\n";'
5,421
Posted By sledmouth
perl -e 'print "Enter word to...
perl -e 'print "Enter word to reverse:\n";chomp(my $in=<STDIN>);print reverse(split'',$in)."\n";'
8,783
Posted By sledmouth
You would just be using awk rather than head. ...
You would just be using awk rather than head.

grep "$3" `awk 'NR=='$i temp.txt ` > temp2.txt

Though you could have used head anyhow:
`head -$i temp.txt|tail -1`


If you are simply looping...
8,783
Posted By sledmouth
awk 'NR=='$i temp.txt
awk 'NR=='$i temp.txt
5,022
Posted By sledmouth
Create public SSH keys on all remote machines...
Create public SSH keys on all remote machines then add those keys to the authorized_keys2 file on the host you intend to run your script. This will allow for passwordless SSH connection.

You...
Showing results 1 to 7 of 7

 
All times are GMT -4. The time now is 06:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy