Search Results

Search: Posts Made By: azaria
15,568
Posted By azaria
GIYF. (Google is your friend.)
Have a look at
unstableme.blogspot.com/2008/08/row-to-column-transpose-bash-scripting.html

And just google "Unix script Transpose" or maybe add ant specific shell or tool you want to use. Like...
7,507
Posted By azaria
this works for me: for i in $( seq -w 0000...
this works for me:
for i in $( seq -w 0000 9999);
do
hash=`echo $i | md5sum`;
echo $hash >> /tmp/somefile;
if [ `echo $hash|cut -c -4` == '0000' ];
then
break;
fi; ...
3,645
Posted By azaria
Maybe replace the delete command (rm) by reversible command (tar)
In short:
Replace the rm command by a deliberately tailored "tar" command.
Whenever you type "rm file" it will actually execute "tar Recycle-bin/file.tar file" - which will move the file into the...
1,745
Posted By azaria
How to "select all" on X from within a script?
Hi,

Some very knowledgeable people around here. I'd appreciate help with.

I'm trying to work on a script that uses Xsel to get the X-selection, Manipulate the value by the script, and set the...
Showing results 1 to 4 of 4

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