Search Results

Search: Posts Made By: munkeHoller
Forum: Programming 10-30-2011
2,644
Posted By munkeHoller
# how about using abs abs(number) + abs(number)
# how about using abs
abs(number) + abs(number)
Forum: Linux 10-27-2011
2,313
Posted By munkeHoller
what OS & tar versions are you using pls.
what OS & tar versions are you using pls.
2,659
Posted By munkeHoller
# one way .... egrep -v -f <fileWithExcludes>...
# one way ....
egrep -v -f <fileWithExcludes> <file with stuff>
4,592
Posted By munkeHoller
#fsck (or one of its variants should do the job) ...
#fsck (or one of its variants should do the job)
man -k fsck
18,200
Posted By munkeHoller
nope, and when its complete it will a nice...
nope, and when its complete it will a nice solution.
Forum: Programming 10-21-2011
1,462
Posted By munkeHoller
# # should the comma's at the end of the lines...
#
# should the comma's at the end of the lines be there or are they supposed to be semi colons ..
#
...
house => $node->getElementsByTagName( 'housenumber' )[0]->textContent,
street =>...
Forum: Debian 10-21-2011
2,651
Posted By munkeHoller
# # example ... -i to extract, d to create dirs...
#
# example ... -i to extract, d to create dirs v to list files being extracted
# check out the cpio manual on the gnu site
cpio -idv < tapedevice
#
1,345
Posted By munkeHoller
Yes, it may be hard to believe (and 100% with you...
Yes, it may be hard to believe (and 100% with you on that), in which case I will either ignore the request or ask the submitter to restate removing ambiguity.



I think giving answers with the...
2,236
Posted By munkeHoller
show us the data pls.
show us the data pls.
1,350
Posted By munkeHoller
# # one way could be .... # tail -f A.log |...
#
# one way could be ....
#
tail -f A.log | tee -a B.log
1,218
Posted By munkeHoller
please restate you requirements, they are...
please restate you requirements, they are unclear.
does your file look like that below, or its is a single continuous stream unbroken by newline as per your example.
if it looks like the below,...
1,703
Posted By munkeHoller
# add $ in the regex else if '*' contains a 2...
# add $ in the regex else if '*' contains a 2 you'll get unexpected results.

for f in file*2; do echo "mv $f $(echo $f| sed 's/2$/xx/')"; done
2,236
Posted By munkeHoller
# # given my previous snippet .... and files f1...
#
# given my previous snippet .... and files f1 f2 where f1 is in ~/thisdir and f2 is in ~/thatdir
# one way ...
#
find ~/thisdir ~/thatdir -name 'f?' -exec awk -f awkEx.awk {} \;
1,345
Posted By munkeHoller
not sure how you've managed to interpret so much...
not sure how you've managed to interpret so much from such a vague request.....
and your answer is riddled with caveats, i recommend the requester restate the requirement in the name of clarity.
1,345
Posted By munkeHoller
what's wrong with simply using cat <somefile>...
what's wrong with simply using cat <somefile> ?
Forum: HP-UX 10-19-2011
3,411
Posted By munkeHoller
man top
man top
909
Posted By munkeHoller
for starters NB: remove the encapsulating echo...
for starters
NB: remove the encapsulating echo wrapper when ready to do the deed .....


for f in *svir.jpg; do echo "mv $f $(echo $f | sed -e 's/svir/SVIR/' )"; done

for f in *svwv.jpg; do...
Forum: AIX 10-18-2011
7,244
Posted By munkeHoller
Your question is unclear, please restate giving...
Your question is unclear, please restate giving an example of what it is you want to do and (ideally) a reason for ..
2,236
Posted By munkeHoller
Another way might be ... Given files f1 and...
Another way might be ...

Given files f1 and f2 and awk script ex.awk
cat f1
Date: 12/12/12
Time: 00:15
Age: xxxxxx
Processid: 45
User: usr1
Message: N/A
Miscellaneous: N/A...
855
Posted By munkeHoller
sort needs somewhere to create work file(s) used...
sort needs somewhere to create work file(s) used during its processing, these are usually in /tmp or $TMPDIR, but the option is given to the user to select a 'scratch' area .... so, its optional
18,200
Posted By munkeHoller
I knocked this out off the top of my head, but,...
I knocked this out off the top of my head, but, please, let me know why you think its complicated
(its reasonably robust, tidies as it goes, concise ), happy for it to be improved|replaced shared...
1,562
Posted By munkeHoller
Which OS are you running - as there are a number...
Which OS are you running - as there are a number of flavours of crontab ...

Please supply examples of source|&output (a before && after scenario would be helpful), having that will enable...
18,200
Posted By munkeHoller
here's one way ..... for file in *.x; do ...
here's one way .....

for file in *.x; do
wc -c $file | awk '{printf("%ld,%s\n",$1,$2)}' > ${file}.temp && cat ${file} >> ${file}.temp && mv ${file}.temp ${file};
done
855
Posted By munkeHoller
what 'help' do you want ?. additionally,...
what 'help' do you want ?.

additionally, give the output verbatim generated by running the command on your system pls.

a rough breakdown of your command line ....

sort
-T...
3,700
Posted By munkeHoller
have you read the Thunderbird FAQ, - enter...
have you read the Thunderbird FAQ, - enter Thunderbird FAQ into a browser ....

ask the mozilla community, this is not a unix issue, its a client app running on a host that is running a unix (or...
Showing results 1 to 25 of 25

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