Sponsored Content
Full Discussion: Sort Date YYYYDDD
Top Forums Shell Programming and Scripting Sort Date YYYYDDD Post 302720503 by bakunin on Wednesday 24th of October 2012 10:08:42 AM
Old 10-24-2012
oops, my bad: i miscounted the fields, sorry.

bakunin
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sort by Date

I'm looking to edit a file which contains various data including date.(ddmmyyyy) I want to sort by date and then count the number of different dates found Any ideas how to acheive this Thanks in advance. (2 Replies)
Discussion started by: Mudshark
2 Replies

2. UNIX for Dummies Questions & Answers

sort by date and concatenate first three

Hi: I am trying to create some script that sorts the files in a subdirectory by date and concatenates the thre most recently created files. SAy, file1 date1 file2 date2 file3 date3 file4 date4 file5 date5 file6 date6 i only want to concatenate the first three which are the most... (4 Replies)
Discussion started by: jlarios
4 Replies

3. Linux

sort files by date

Hi All, Sorry to throw this frequent question but I lost my notes on it. How do you list the files by date? I'm on red hat. Thanks in advance, itik (1 Reply)
Discussion started by: itik
1 Replies

4. Shell Programming and Scripting

how to sort by the date

Hello World~ Please Help Me(BASH) input: dde,2007.8.25,891 dde,2007.8.23,356 dfe,2007.10.12,341 cba,2005.12.5,342 I wanna know how to sort by the date(2005.12.5) output: cba,2005.12.5,342 dde,2007.8.23,356 dde,2007.8.25,891 dfe,2007.10.12,341 Thanks in advance (3 Replies)
Discussion started by: lifegeek
3 Replies

5. Shell Programming and Scripting

sort date issue

Hi Everyone, # cat b Sat 12 Sep 2009 10:31:49 PM MYT;a;a;a;Sun 13 Sep 2009 11:32:49 AM MYT; Sat 13 Sep 2009 10:31:49 PM MYT;a;a;a;Mon 14 Sep 2009 10:31:49 PM MYT; Sat 14 Sep 2009 10:31:49 PM MYT;a;a;a;Sun 13 Sep 2009 10:31:49 PM MYT; # sort -t';' -k5 b Sat 13 Sep 2009 10:31:49 PM... (8 Replies)
Discussion started by: jimmy_y
8 Replies

6. UNIX for Dummies Questions & Answers

Sort comand for Date

Hi All, I have two questions for sorting based on date. Sample input: 2009/07/23 11:48:44|alpha 2009/07/23 11:48:44|gamme 2009/07/23 11:48:44|beta 2009/07/23 11:48:44|test 2009/07/23 11:48:44|data 2009/07/23 11:48:44|hello 2009/07/23 11:48:44|cat Output: 2009/07/23... (3 Replies)
Discussion started by: quintet
3 Replies

7. UNIX for Dummies Questions & Answers

how to combine du -h and sort by date

The problem: I have a task to give a my boss: 1. the files and directory sizes in human readable form: du -h 2. He also wants me to give him the date stamp on the files and directories. something like ls -R or sort by date Does anyone have a script that can do this efficiently (I am... (2 Replies)
Discussion started by: obology
2 Replies

8. Shell Programming and Scripting

sort the date

Hi All, Please help me to sort the date field which is in the format 2012-02-03 16:09:37.388... Platform: Red Hat linux Thanks in advance (2 Replies)
Discussion started by: jesu
2 Replies

9. Shell Programming and Scripting

Sort help: How to sort collected 'file list' by date stamp :

Hi Experts, I have a filelist collected from another server , now want to sort the output using date/time stamp filed. - Filed 6, 7,8 are showing the date/time/stamp. Here is the input: #---------------------------------------------------------------------- -rw------- 1 root ... (3 Replies)
Discussion started by: rveri
3 Replies

10. Shell Programming and Scripting

Sort by name and date

nawk '$1=="Date" {d=$(NF-2);next} $1=="Queue" {q=$NF;next} $1=="Forms"{print q, $NF, d}' OFS='|' printfile.log I have this script working. Please let me know how to sort by Queue and then Date. (4 Replies)
Discussion started by: Daniel Gate
4 Replies
mkstr(1)						      General Commands Manual							  mkstr(1)

Name
       mkstr - create an error message file

Syntax
       mkstr [-] messagefile prefix file...

Description
       The command is used to create files of error messages.  Its use can make programs with large numbers of error diagnostics much smaller, and
       reduce system overhead in running the program as the error messages do not have to be constantly swapped in and out.

       The command will process each of the specified files, placing a massaged version of the input file in a file whose  name  consists  of  the
       specified prefix and the original name.	A typical usage of would be:
       mkstr pistrings xx *.c
       This  command  would  cause  all the error messages from the C source files in the current directory to be placed in the file pistrings and
       processed copies of the source for these files to be placed in files whose names are prefixed with xx.

       To process the error messages in the source to the message file keys on the string `error("' in the input stream.  Each time it occurs, the
       C  string starting at the `"' is placed in the message file followed by a null character and a new-line character.  The null character ter-
       minates the message so it can be easily used when retrieved, the new-line character makes it possible to sensibly the error message file to
       see  its  contents.   The  massaged copy of the input file then contains a pointer into the file which can be used to retrieve the message,
       that is:
       char filename[] =  "/usr/lib/pi_strings";
       int  file = -1;

       error(a1, a2, a3, a4)
       {
	    char buf[256];

	    Bif (efil < 0) {
		 efil = open(efilname, 0);
		 if (efil < 0) {
       oops:
		      perror(efilname);
		      exit(2);
		 }
	    }
	    if (lseek(efil, (long) a1, 0) || read(efil, buf, 256) <= 0)
		 goto oops;
	    printf(buf, a2, a3, a4);
       }

Options
       -  Places error messages at the end of specified message file.

See Also
       xstr(1), lseek(2)

																	  mkstr(1)
All times are GMT -4. The time now is 01:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy