Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Sorting arrays horizontally without END section, awk Post 302709337 by alister on Wednesday 3rd of October 2012 06:15:54 AM
Old 10-03-2012
Quote:
Originally Posted by lucasvs
It is part of a bigger script with several redirections
Quote:
Originally Posted by lucasvs
alister: this task will be part of a function as I have to repeat it multiple times. Can a function refer to rules written in an END block?
Unless you share the entire script (redacting sensitive parts if necessary), I am not going to invest any more of my time taking shots in the dark, attempting to answer questions which could be unintentionally misguided and for which no context has been provided.

Regards,
Alister
This User Gave Thanks to alister For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed & awk--get section of file based 2 params

I need to get a section of a file based on 2 params. I want the part of the file between param 1 & 2. I have tried a bunch of ways and just can't seem to get it right. Can someone please help me out.....its much appreciated. Here is what I have found that looks like what I want....but doesn't... (12 Replies)
Discussion started by: Andy Cook
12 Replies

2. Shell Programming and Scripting

Sorting rules on a text section

Hi all My text file looks like this: start doc ... (certain number of records) REC3|Emma|info| REC3|Lukas|info| REC3|Arthur|info| ... (certain number of records) end doc start doc ... (certain number of records)... (4 Replies)
Discussion started by: Indalecio
4 Replies

3. Shell Programming and Scripting

Extract section of file based on word in section

I have a list of Servers in no particular order as follows: virtualMachines="IIBSBS IIBVICDMS01 IIBVICMA01"And I am generating some output from a pre-existing script that gives me the following (this is a sample output selection). 9/17/2010 8:00:05 PM: Normal backup using VDRBACKUPS... (2 Replies)
Discussion started by: jelloir
2 Replies

4. Shell Programming and Scripting

how to get one particular section (using awk)?

Hey, I have a problem about how to get one section of a file? I'm new to shell, but by reading some tutorial, I think I can use awk to do this. my input file: >ref|ZP_04937576.1| ECRINAEDPKTFMPSPGKVKHFHAPGGNGVRVDSHLYSGYSVPPNYDSLVGKVITYGAD DEALARMRNALDELIVDGIKTNTELHKDLVRDAAFCKGGVNIHYLE... (11 Replies)
Discussion started by: ritacc
11 Replies

5. Shell Programming and Scripting

Sort each row (horizontally) in AWK or any

Hello, How to sort each row in a document with numerical values and with more than one row. Example Input data (file1.txt): 4 6 8 1 7 2 12 9 6 10 6 1 14 5 7 and I want the the output to look like this(file2.txt): 1 4 6 7 8 2 6 9 10 12 1 5 6 7 14 I've tried sort -n file1.txt >... (12 Replies)
Discussion started by: joseamck
12 Replies

6. Shell Programming and Scripting

using awk to get specific section of lines in logs

i have a log file that has the date and time that looks like this: Wed Jun 28 15:46:21 2012 test failed tailed passed passed not error panic what we want to focus on is the first 5 columns because they contain the date and time. the date and time can be anywhere on the line. in this... (6 Replies)
Discussion started by: SkySmart
6 Replies

7. Shell Programming and Scripting

Warning while sorting : A newline character was added to the end of file

Hi, I am trying to sort a csv file which has say 10 lines each line having a row size that is upto 30183 no. of COLUMNS (Row length = 30183). There is a LINE FEED (LF) at the end of each line. When I try to sort this file say, based on the second FIELD using the below command, sort -t ',' +1... (5 Replies)
Discussion started by: DHeisenberg
5 Replies

8. Shell Programming and Scripting

IF section problem. syntax error: unexpected end of file error

Hello, I have another problem with my script. Please accept my apologies, but I am really nooby in sh scripts. I am writing it for first time. My script: returned=`tail -50 SapLogs.log | grep -i "Error"` echo $returned if ; then echo "There is no errors in the logs" fi And after... (10 Replies)
Discussion started by: jedzio
10 Replies

9. UNIX for Beginners Questions & Answers

Sorting blocks by a section of the identifier

I have a file that should be sorted by a string (shown in red in my example below) in the identifier. The RS is ^@M0, something like this: @M04961:22:000000000-B5VGJ:1:1101:9280:7106 1:N:0:86 GGCATGAAAACATACAAACCGTCTTTCCAGAAATTGTTCCAAGTATCGGCAACAGCTTTATCAATACCATGAAAAATATCAACCACACCAGAAGCAGCAT... (16 Replies)
Discussion started by: Xterra
16 Replies

10. Shell Programming and Scripting

awk to parse section of csv into array

In the awk below I am trying to parse the Sample Name below the section. The values that are extracted are read into array s(each value in a row seperated by a space) which will be used later in a bash script. The awk does execute but no values are printed. I am also not sure how to print in a row... (1 Reply)
Discussion started by: cmccabe
1 Replies
INTLDATEFORMATTER.GETTIMEZONE(3)					 1					  INTLDATEFORMATTER.GETTIMEZONE(3)

IntlDateFormatter::getTimeZone - Get formatters timezone

	Object oriented style

SYNOPSIS
public IntlTimeZone IntlDateFormatter::getTimeZone (void ) DESCRIPTION
Procedural style IntlTimeZone datefmt_get_timezone (void ) Returns an IntlTimeZone object representing the timezone that will be used by this object to format dates and times. When formatting Intl- Calendar and DateTime objects with this IntlDateFormatter, the timezone used will be the one returned by this method, not the one associ- ated with the objects being formatted. PARAMETERS
This function has no parameters. RETURN VALUES
The associated IntlTimeZone object or FALSE on failure. EXAMPLES
Example #1 IntlDateFormatter.getTimeZone(3) examples <?php $madrid = IntlDateFormatter::create(NULL, NULL, NULL, 'Europe/Madrid'); $lisbon = IntlDateFormatter::create(NULL, NULL, NULL, 'Europe/Lisbon'); var_dump($madrid->getTimezone()); echo $madrid->getTimezone()->getDisplayName( false, IntlTimeZone::DISPLAY_GENERIC_LOCATION, "en_US"), " "; echo $lisbon->getTimeZone()->getId(), " "; //The id can also be retrieved with ->getTimezoneId() echo $lisbon->getTimeZoneId(), " "; The above example will output: object(IntlTimeZone)#4(4) { ["valid"]=> bool(true) ["id"]=> string(13) "Europe/Madrid" ["rawOffset"]=> int(3600000) ["currentOffset"]=> int(7200000) } Spain Time Europe/Lisbon Europe/Lisbon SEE ALSO
IntlDateFormatter.getTimeZoneId(3), IntlDateFormatter.setTimeZone(3), IntlTimeZone. PHP Documentation Group INTLDATEFORMATTER.GETTIMEZONE(3)
All times are GMT -4. The time now is 09:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy