Sort entries of lines using shell

前端 未结 4 1516
-上瘾入骨i
-上瘾入骨i 2021-01-24 17:31

Considering the following input and output:

  infile   |   outfile
1 3 5 2 4  |  1 2 3 4 5
2 4 5      |  2 4 5
4 6 2 1    |  1 2 4 6

Is there a

相关标签:
4条回答
  • 2021-01-24 18:11

    Its not pretty (definitely not a 1-liner), but you can sort a line using only builtin shell commands, however for short lines it may be faster than repeatedly calling external functions.

    #!/bin/sh
    sortline(){
    for x in $@;do
        [ ! "$FIRST" ] && FIRST=t && set --
        i=0
        while [ $i -le $# ];do
            [ $x -lt $((${@:$((i+1)):1})) ] && break || i=$((i+1))
        done
        set -- ${@:1:$i}  $x   ${@:$((i+1)):$(($#-$i))}
    done
    echo $@
    }
    while read LINE || [ "$LINE" ];do
        sortline $LINE
    done <$1 >$2
    

    Edit: btw this is a selection sort algorithm in case anyone wondered

    Edit2: this is for numerical values only, for strings you would need to use some comparison like [ "$x" -lt "${@:$((i+1)):1}" ] (unchecked),however I use this C program for strings (I just call it qsort), but it could be modified using atoi on argv:

    #include <stdlib.h>
    #include <string.h>
    static inline int cmp(const void *a, const void *b){
       return strcmp(*(const char **)a, *(const char **)b);
    }
    
    int main(int argc, char *argv[]){
        qsort(++argv, --argc, sizeof(char *), cmp);
        while (argc){
          write(1,argv[0],strlen(argv[0]));
          write(1,(--argc && argv++)?"\t":"\n",1);
       }
    }
    
    0 讨论(0)
  • 2021-01-24 18:16

    Perl can do this nicely as a one-line Unix/Linux command:

    perl -n -e "print join ' ', sort{a<=>b} split ' '" < input.txt > output.txt
    

    This is "archaic" Perl with no dollars before the a and b, which allows the command to run fine in both Windows and bash shells. If you use the dollars with bash, they must either be escaped with backslashes, or you must invert the single and double quotes.

    Note that the distinctions you are trying to draw between commands, programming languages, and programs are pretty thin. Bash is a programming language. Perl can certainly be used as a shell. Both are commands.

    The reason your script runs slowly is that it spawns 3 processes per loop iteration. Process creation is pretty expensive.

    0 讨论(0)
  • 2021-01-24 18:19

    The question is more subtle than it seems. You appear to be asking whether there is a quicker way to perform the sort, and you are getting a lot of (elegant!) answers with Perl and awk and so on. But your question seems to be whether you can do a quicker sort with shell built-ins, and for that, the answer is no.

    Obviously, sort is not a shell built-in, and neither is tr. There isn't a built-in that does what sort does, and the built-ins that might substitute for "tr" are not likely to help you here (it would take as much work to manipulate, say, bash's IFS variable to remove the call to tr as to just live with the tr).

    Personally, I would go with Perl. Note that if your data set is large or funky, you have the option of changing Perls default sorting algorithm using the sort pragma. I don;t think you will need it for sorting a file of integers, but maybe that was just an illustration on your part.

    0 讨论(0)
  • 2021-01-24 18:36
    #!awk -f
    {
      baz = 0
      PROCINFO["sorted_in"] = "@val_num_asc"
      split($0, foo)
      for (bar in foo)
        $++baz = foo[bar]
    }
    1
    

    Result

    1 2 3 4 5
    2 4 5
    1 2 4 6
    
    0 讨论(0)
提交回复
热议问题