Search Results

Search: Posts Made By: blastit.fr
3,297
Posted By Don Cragun
The real question is not what the region is when...
The real question is not what the region is when the code works or fails, but to what do the expansions of the three shell variables: com_dir, dup_file_name_chk, and save_dir expand when the code...
2,246
Posted By Scrutinizer
Note: only GNU awk and mawk can use a Regex...
Note: only GNU awk and mawk can use a Regex expression for the RS variable. Other awks only take a single (leftmost) character
for RS...

An alternative that should work in any modern Posix awk...
2,586
Posted By Peasant
Use \+ if you are passing files to utilities...
Use \+ if you are passing files to utilities which can handle multiple files.

This is valid in both gzip and cp, and you should gain performance with small change.

Also, files with .gz...
3,803
Posted By Corona688
If it's not comma-separated, it's not CSV. ...
If it's not comma-separated, it's not CSV. You've got a flatfile.

awk '{ S=""; for(N=3; N<NF; N++) S=S "_" $N ; print $1, $2, substr(S,2), $NF }' inputfile
3,975
Posted By Don Cragun
Almost... The H command in ed doesn't move to...
Almost...
The H command in ed doesn't move to the beginning of the file, it tells ed that if any of the following commands fail, ed should print a textual diagnostic message (or Help message)...
11,480
Posted By Don Cragun
But, of course, the above script only works...
But, of course, the above script only works correctly if the input fed into it always has exactly four fields in the input (and I didn't see anything in this thread so far that places any limits on...
2,823
Posted By Aia
That's most unfortunate. You have a version of...
That's most unfortunate.
You have a version of sed that does not like or support escape characters.
You do not have Perl.
What else do we have?
Do you have awk?
awk '/Apple:/{print...
Showing results 1 to 7 of 7

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