![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Audio conversion tools for Linux | iBot | UNIX and Linux RSS News | 0 | 02-28-2008 12:10 PM |
| Video conversion in Linux with RippedWire and WinFF | iBot | UNIX and Linux RSS News | 0 | 02-05-2008 03:00 PM |
| Porting From Linux To Hpux | anak0nda | High Level Programming | 8 | 10-31-2007 06:51 PM |
| compiling linux driver to run on HPUX | hilbi | HP-UX | 4 | 11-07-2002 10:54 PM |
| From HPUX tar to Linux tar | iarot | Filesystems, Disks and Memory | 4 | 02-14-2002 04:10 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
HPUX to Linux awk conversion
I have the following script to edit ^'s and newlines out of files to be entered into a database. This script has been around since the dawn of time (way before me).
Code:
#!/bin/bash
# Remove all ^ and \n from the source file, except do not remove ^^^\n
cat myfile.hold | awk '
BEGIN {FS="|"; OFS="|"; OUTPUT=""}
{
gsub("\^$","",$0);
gsub("\^\^$","^",$0);
OUTPUT=OUTPUT $0;
if (match(OUTPUT, "\^$"))
{
printf ("%s\n", OUTPUT);
OUTPUT="";
}
} ' - > UNIQUENAME.out
mv UNIQUENAME.out /testing/name.out
Code:
awk: cmd. line:4: warning: escape sequence `\^' treated as plain `^' Thanks, Sean |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|