(which is what I think you're trying to get) when the 1st two characters of the first and last fields on the 1st line are <space><backspace>, I don't know what else to suggest. Both of the above commands produce this output when using sort on Mac OS X and should produce the same output on any system with a sort utility that conforms to the standards.
Are you sure that you don't have an alias in place for sort that is adding options you don't want in this case? (What output do you get from the command: type sort?)
I tried each of the examples you presented and I want to thank you for the help.
You asked for an uploaded file, and one is attached.
To upload, I had to change a filename from x.raw to x.txt
The line I confirmed worked on my system was the one proposed. It is the
Code:
LC_ALL=C sort -t '|' -k1,1 -o x.sorted x.txt
and it works. I am delighted.
I was not aware of how to specify the LC_ALL=C or its significance.
Here is the slightly larger file I was using (from the same population)
To upload, as I mentioned, I had to change the upload filename to x.txt x.txt
I intend to put the scanner into the public FOSS domain.
The purpose of the scanner is to obtain a checksum (md5 or sha1, or crc32) of all files beneath a given directory.
A blacklist facility to omit some subdirectories is part of the scanner.
Why do this? Auditors where I was working wanted to detect changes in production files (ERP object or source code). The scanner would be run daily (auditors did not require realtime notices), they wanted proof that any software implementation followed corporate implementation rules.
This software was developed on my own computers in my home.
Want a source copy? Just ask for one. Want to collaborate to extend it? ditto.
Thank you all,
Leslie
PS. My response was late. Your messages were filtered into SPAM. I check SPAM every few days and that is why today, now, I am responding.
Last edited by Scrutinizer; 03-06-2014 at 01:29 AM..
Reason: code tags
Hello,
I am looking to automate a task - which is updating an existing access control instruction of a server and making sure that the attributes defined in the instruction is in sorted order. The instructions will be of a specific syntax.
For example lets assume below listed is one of an... (6 Replies)
Hi all,
I have a file with 3 columns separated by space. Each column has a heading. I want to sort according to the values in the 2nd column (ascending order).
Ex.
Name rank direction
goory 0.05 --+
laby 0.0006 ---
namy 0.31 -+-
....etc.
Output should be
Name rank direction
laby... (3 Replies)
I am in need of keeping a title of a report and removing duplicates from a file like the one below. I will be using the `uniq –u` command for the removal of duplicate lines (let me know if there is a better way rather than the command `uniq`) but I need to keep the title (first 9 lines) of the... (2 Replies)
HI all
i have a text file file1 like this
004002004545454000001
041002004545222000002
006003008751525000003
007003008751352000004
006003008751142000005
004001005745745000006
i want to sort the file according to position 1-5 and secondary sort by
the last position of file 16-21... (4 Replies)
So, I have a file that has some duplicate lines. The file has a header line that I would like to keep at the top.
I could do this by extracting the header from the file, 'sort -u' the remaining lines, and recombine them. But they are quite big, so if there is a way to do it with a single... (1 Reply)
Hello,
I have a text file that I need to sort the lines by date
record=5,French 9,2008-09-02T08:55:00,2008-09-02T10:00:00,2
record=79,Entrepreneurship 30,2008-09-17T11:00:00,2008-09-17T12:00:00,2
record=6,Computer Science 20,2008-09-02T09:55:00,2008-09-02T10:50:00,1... (5 Replies)
Hi,
I want to delete a line in a file that contains a string. I tried:
grep -v "mystring" Myfile > Myfile
But this makes the Myfile empty. I read that I need to do something like:
grep -v "mystring" Myfile > Myfile.new
rm Myfile
mv Myfile.new Myfile
Is there a way to avoid creating a... (2 Replies)
infile:
z y x
c b a
desired output:
x y z
a b c
I don't want to sort the lines into this:
a b c
x y z
nor this:
c b a
z y x
The number of fields per line and number of lines is indeterminate. The field separator is always a space.
Thanks for the use of your collective brains.... (11 Replies)