Sponsored Content
Top Forums Shell Programming and Scripting Is it Possible to sort a list of hexadecimal numbers using "sort" command? Post 302548926 by drl on Friday 19th of August 2011 06:20:49 PM
Old 08-19-2011
Hi.
Quote:
msort is a program for sorting files in sophisticated ways. It was originally developed for alphabetizing dictionaries of "exotic" languages in formats like those used by Shoebox and Toolbox, for which it has been extensively used, but is useful for many other purposes. msort differs from typical sort utilities in providing greater flexibility in parsing the input into records and identifying key fields and greater control over the sort order.
...

Msort stores numeric keys internally as double precision floating point numbers.
The conversion is done using the standard C library function strtod(3), which under-
stands both standard and scientific notation, decimal and hexadecimal. The special
values INFINITY and NAN are also supported. For details, see the documentation
for strtod(3). The interpretation of strings as numbers is governed by the locale
setting. Numbers containing delimiters such as commas can be sorted numerically
by using msort's exclusion facilities to remove the delimiters.

from the extensive pdf describing msort
The utility msort might be found in your repository, or, failing that, at MSORT

Best wishes ... cheers, drl
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

i don't understand the "sort" command

i have been trying to understand this chapter titled "Searching for Files and Text" for a few weeks now. unfortunately, this chapter is one of those things, that no matter how hard you try and how long you try for, you are incapable of understanding (at least in my case) this entire chapter,... (2 Replies)
Discussion started by: xyyz
2 Replies

2. UNIX for Dummies Questions & Answers

Problems with "sort" command

It seems our administrators had installed the version of the "sort" command not having the -M option. Does anyone have the source code for this routine? I need to be able to sort on month comparison: e.g. "sudo at -l | sort -k3M,5" (1 Reply)
Discussion started by: superdelic
1 Replies

3. Solaris

"mail" command sort by date

Hello experts, I am using SunFire T200. When I start reading the mail with "mail" command it comes older mail first. From MAILER-DAEMON Sat Mar 28 06:02:48 2009 Return-Path: <MAILER-DAEMON@emarn1> Received: from localhost (localhost) .... .... I want to see the most recent mail... (1 Reply)
Discussion started by: thepurple
1 Replies

4. Shell Programming and Scripting

How to Sort Floating Numbers Using the Sort Command?

Hi to all. I'm trying to sort this with the Unix command sort. user1:12345678:3.5:2.5:8:1:2:3 user2:12345679:4.5:3.5:8:1:3:2 user3:12345687:5.5:2.5:6:1:3:2 user4:12345670:5.5:2.5:5:3:2:1 user5:12345671:2.5:5.5:7:2:3:1 I need to get this: user3:12345687:5.5:2.5:6:1:3:2... (7 Replies)
Discussion started by: daniel.gbaena
7 Replies

5. Shell Programming and Scripting

Meaning of "b" modifier in "sort" command

I need to sort the following file by the rhdiskpower devices in the last column: Total_MB Free_MB OS_MB Name Failgroup Library Label UDID Product Redund Path 1024 851 1024 OCRVOT1_0000 OCRVOT1_0000 System UNKNOWN ... (3 Replies)
Discussion started by: wjssj
3 Replies

6. Shell Programming and Scripting

sort, columns, no result! can I print files of "planes"?

hi, please can I ask you for some help? I have data from 3D situation, x y z value I'd like to use gnuplot to generate maps of the value in the planes z=0 to z=1 for example, my file looks like -0,012 0,0060 0,0 0,13972813076023477 -0,012 0,0064319163 4,2894483E-4 ... (1 Reply)
Discussion started by: kocour
1 Replies

7. UNIX for Dummies Questions & Answers

New to Unix command line and have a question about the "sort" command

I am going through the Unix Made Easy second edition book by John Muster. So far it's been very informative and I can tell it may be a bit out of date. In one of the exercises it talks about the "sort" command and using it to sort column's of data etc. The "sort" command has changed a bit and... (1 Reply)
Discussion started by: budfoxcat
1 Replies

8. UNIX for Dummies Questions & Answers

Sorting files ending in numbers with "sort"

I have a group of files that I need to be sorted by number. I have tried to use the sort command without any luck. ls includes* includes1 includes10 includes11 includes12 includes2 includes3 includes4 includes5 includes6 includes7 includes8 includes9 I have tried ls includes*... (6 Replies)
Discussion started by: newbie2010
6 Replies

9. UNIX for Beginners Questions & Answers

Extract delta records using with "comm" and "sort" commands combination

Hi All, I have 2 pipe delimited files viz., file_old and file_new. I'm trying to compare these 2 files, and extract all the different rows between them into a new_file. comm -3 < sort file_old < sort file_new > new_file I am getting the below error: -ksh: sort: cannot open But if I do... (7 Replies)
Discussion started by: njny
7 Replies

10. UNIX for Beginners Questions & Answers

Gawk: PROCINFO["sorted_in"] does not sort my numerical array values

Hi, PROCINFO seems to be a great function but I don't manage to make it works. input: B,A,C B B,B As an example, just want to count the occurence of each letter across the input and sort them by decreased order. Wanted output: B 4 A 1 C 1 When I use this command, the PROCINFO... (4 Replies)
Discussion started by: beca123456
4 Replies
strtod(3C)						   Standard C Library Functions 						strtod(3C)

NAME
strtod, strtof, strtold, atof - convert string to floating-point number SYNOPSIS
#include <stdlib.h> double strtod(const char *restrict nptr, char **restrict endptr); float strtof(const char *restrict nptr, char **restrict endptr); long double strtold(const char *restrict nptr, char **restrict endptr); double atof(const char *str); DESCRIPTION
The strtod(), strtof(), and strtold() functions convert the initial portion of the string pointed to by nptr to double, float, and long double representation, respectively. First they decompose the input string into three parts: 1. An initial, possibly empty, sequence of white-space characters (as specified by isspace(3C)) 2. A subject sequence interpreted as a floating-point constant or representing infinity or NaN 3. A final string of one or more unrecognized characters, including the terminating null byte of the input string. Then they attempt to convert the subject sequence to a floating-point number, and return the result. The expected form of the subject sequence is an optional plus or minus sign, then one of the following: o A non-empty sequence of digits optionally containing a radix character, then an optional exponent part o A 0x or 0X, then a non-empty sequence of hexadecimal digits optionally containing a radix character, then an optional binary exponent part o One of INF or INFINITY, ignoring case o One of NAN or NAN(n-char-sequence(opt)), ignoring case in the NAN part, where: n-char-sequence: digit nondigit n-char-sequence digit n-char-sequence nondigit In default mode for strtod(), only decimal, INF/INFINITY, and NAN/NAN(n-char-sequence) forms are recognized. In C99/SUSv3 mode, hexadecimal strings are also recognized. In default mode for strtod(), the n-char-sequence in the NAN(n-char-equence) form can contain any character except ')' (right parenthesis) or '' (null). In C99/SUSv3 mode, the n-char-sequence can contain only upper and lower case letters, digits, and '_' (underscore). The strtof() and strtold() functions always function in C99/SUSv3-conformant mode. The subject sequence is defined as the longest initial subsequence of the input string, starting with the first non-white-space character, that is of the expected form. The subject sequence contains no characters if the input string is not of the expected form. If the subject sequence has the expected form for a floating-point number, the sequence of characters starting with the first digit or the decimal-point character (whichever occurs first) is interpreted as a floating constant of the C language, except that the radix character is used in place of a period, and that if neither an exponent part nor a radix character appears in a decimal floating-point number, or if a binary exponent part does not appear in a hexadecimal floating-point number, an exponent part of the appropriate type with value zero is assumed to follow the last digit in the string. If the subject sequence begins with a minus sign, the sequence is interpreted as negated. A character sequence INF or INFINITY is interpreted as an infinity. A character sequence NAN or NAN(n-char-sequence(opt)) is interpreted as a quiet NaN. A pointer to the final string is stored in the object pointed to by endptr, provided that endptr is not a null pointer. If the subject sequence has either the decimal or hexadecimal form, the value resulting from the conversion is rounded correctly according to the prevailing floating point rounding direction mode. The conversion also raises floating point inexact, underflow, or overflow excep- tions as appropriate. The radix character is defined in the program's locale (category LC_NUMERIC). In the POSIX locale, or in a locale where the radix character is not defined, the radix character defaults to a period ('.'). If the subject sequence is empty or does not have the expected form, no conversion is performed; the value of nptr is stored in the object pointed to by endptr, provided that endptr is not a null pointer. The strtod() function does not change the setting of errno if successful. The atof(str) function call is equivalent to strtod(nptr, (char **)NULL). RETURN VALUES
Upon successful completion, these functions return the converted value. If no conversion could be performed, 0 is returned. If the correct value is outside the range of representable values, +-HUGE_VAL, +-HUGE_VALF, or +-HUGE_VALL is returned (according to the sign of the value), a floating point overflow exception is raised, and errno is set to ERANGE. If the correct value would cause an underflow, the correctly rounded result (which may be normal, subnormal, or zero) is returned, a float- ing point underflow exception is raised, and errno is set to ERANGE. ERRORS
These functions will fail if: ERANGE The value to be returned would cause overflow or underflow These functions may fail if: EINVAL No conversion could be performed. USAGE
Since 0 is returned on error and is also a valid return on success, an application wishing to check for error situations should set errno to 0, then call strtod(), strtof(), or strtold(), then check errno. The changes to strtod() introduced by the ISO/IEC 9899: 1999 standard can alter the behavior of well-formed applications complying with the ISO/IEC 9899: 1990 standard and thus earlier versions of IEEE Std 1003.1-200x. One such example would be: int what_kind_of_number (char *s) { char *endp; double d; long l; d = strtod(s, &endp); if (s != endp && *endp == ` ') printf("It's a float with value %g ", d); else { l = strtol(s, &endp, 0); if (s != endp && *endp == `') printf("It's an integer with value %ld ", 1); else return 1; } return 0; } If the function is called with: what_kind_of_number ("0x10") an ISO/IEC 9899: 1990 standard-compliant library will result in the function printing: It's an integer with value 16 With the ISO/IEC 9899: 1999 standard, the result is: It's a float with value 16 The change in behavior is due to the inclusion of floating-point numbers in hexadecimal notation without requiring that either a decimal point or the binary exponent be present. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe with exceptions | +-----------------------------+-----------------------------+ SEE ALSO
isspace(3C), localeconv(3C), scanf(3C), setlocale(3C), strtol(3C), attributes(5), standards(5) NOTES
The strtod() and atof() functions can be used safely in multithreaded applications, as long as setlocale(3C) is not called to change the locale. The DESCRIPTION and RETURN VALUES sections above are very similar to the wording used by the Single UNIX Specification version 2 (SUSv2) and the 1989 C Standard to describe the behavior of the strtod() function. Since some users have reported that they find the description confusing, the following notes might be helpful. 1. The strtod() function does not modify the string pointed to by str and does not malloc() space to hold the decomposed portions of the input string. 2. If endptr is not (char **)NULL, strtod() will set the pointer pointed to by endptr to the first byte of the "final string of unrecognized characters". (If all input characters were processed, the pointer pointed to by endptr will be set to point to the null character at the end of the input string.) 3. If strtod() returns 0.0, one of the following occurred: a. The "subject sequence" was not an empty string, but evaluated to 0.0. (In this case, errno will be left unchanged.) b. The "subject sequence" was an empty string . In this case, errno will be left unchanged. (The Single UNIX Specification ver- sion 2 allows errno to be set to EINVAL or to be left unchanged. The C Standard does not specify any specific behavior in this case.) c. The "subject sequence" specified a numeric value whose conversion resulted in a floating point underflow. In this case, an underflow exception is raised and errno is set to ERANGE. Note that the standards do not require that implementations distinguish between these three cases. An application can determine case (b) by making sure that there are no leading white-space characters in the string pointed to by str and giving strtod() an endptr that is not (char **)NULL. If endptr points to the first character of str when strtod() returns, you have detected case (b). Case (c) can be detected by examining the underflow flag or by looking for a non-zero digit before the exponent part of the "subject sequence". Note, however, that the decimal-point character is locale-dependent. 4. If strtod() returns +HUGE_VAL or -HUGE_VAL, one of the following occurred: a. If +HUGE_VAL is returned and errno is set to ERANGE, a floating point overflow occurred while processing a positive value, causing a floating point overflow exception to be raised. b. If -HUGE_VAL is returned and errno is set to ERANGE, a floating point overflow occurred while processing a negative value, causing a floating point overflow exception to be raised. c. If strtod() does not set errno to ERANGE, the value specified by the "subject string" converted to +HUGE_VAL or -HUGE_VAL, respectively. Note that if errno is set to ERANGE when strtod() is called, case (c) can be distinguished from cases (a) and (b) by examining either ERANGE or the overflow flag. SunOS 5.11 1 Nov 2003 strtod(3C)
All times are GMT -4. The time now is 01:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy