Sort by

recency

|

29 Discussions

|

  • + 0 comments
    while read lines
    do 
        echo $lines >> file.txt
    done
    tail -c 20 file.txt
    
  • + 0 comments

    tail -c 20

  • + 0 comments

    tail -c 20

  • + 0 comments

    include

    int main() { printf("Click here\n"); return 0; }

    Is it correct??

  • + 0 comments
    while read lines; do
    echo $lines >> file.txt
    done
    tail -c 20 < file.txt