In my directory I have 20 to 30 files in which I'd like to change one line in all the files. Is there a way to pull up that one line in all the file without having to go into each file and making ...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_10004384.html
I want to generate an awk script that finds a certain pattern on one line and then outputs the previous line, current line, and preceding line (or blank lines as apropos if the match is at the file...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_10009201.html
perl is not available to me and i have an excel-generated csv file that i need to process as follows:
1. remove all commas within double-quotes
(but retain comma delimiters)
2. remove ...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_10034570.html
Does anyone know where I can find a good set of VB friendly string matching functions like in awk/Perl. It can be freeware/shareware or 3d party product with a full implementation of regular expres...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10078145.html
Zones:
Visual BasicDate Answered: 09/28/1998 Grade: D Views: 0
Does Awk have a function to trim leading spaces from a variable? Like printf("%s\n" trim($1));
http://www.experts-exchange.com/OS/Unix/Q_20112512.html
Zones:
UnixDate Answered: 05/04/2001 Grade: A Views: 211
Hello everyone, well here is my story, we have an AIX box that runs version 4 but when I try to use awk as a regular command I can't because in order for me to be abel to execute a command using aw...
http://www.experts-exchange.com/OS/Unix/Q_20123756.html
Zones:
UnixDate Answered: 01/19/2003 Grade: B Views: 4
I wish to compare last 4 digit of 2 hex numbers using AWK, how can I achieve this?
$5 = 123456AB
$4 = 1234ABCD
if( substr($5,5,4) >= substr($4,5,4) )
{ ...
http://www.experts-exchange.com/OS/Unix/Q_20133699.html
Zones:
UnixDate Answered: 06/13/2001 Grade: A Views: 0
Hi everybody !
I have a problem to used awk (or other complicated commands) in UNIX aliases.
For example:
command : du -sk *.gz | nawk '{ i += $1}END{print i}'
run well when printed in UNIX...
http://www.experts-exchange.com/OS/Unix/Q_20310231.html
Zones:
UnixDate Answered: 06/11/2002 Grade: A Views: 0
Hopefully not too hard of a question. i am printing to a laser printer through an AWK script and have a page length of 11 inches with a 1/4 inch top and bottom margin with perforations at 3.75 inch...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_20462401.html
Im using a program called webmagick to generate thumbnails but I want to link each thumbnail to its own zip file. I can get it to create a seperate html page for each image, and add an URL to the t...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_20527510.html