Sort by

recency

|

30 Discussions

|

  • + 0 comments
    sort
    
  • + 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