Sort by

recency

|

29 Discussions

|

  • + 0 comments

    Simple Code

    while read TEXT;
    do
        echo "${TEXT}" >> text.txt
    done
    sort -k 1n < text.txt
    
  • + 0 comments

    sort

  • + 0 comments

    sort

  • + 0 comments
    while read TEXT;
    do
        echo "${TEXT}" >> text.txt
    done
    sort -k 1n < text.txt
    
  • + 0 comments
    #!/bin/bash
    rm file.txt > stdout.txt 2> stderr.txt
    while IFS= read -r line || [ -n "$line" ]; do
      echo "$line" >> file.txt
    done 
    sort < file.txt