Posts by Wellington Souza • 121 points
2 posts
-
0
votes2
answers485
viewsA: Save txt file with windows encoding
You can write the file by adding the line breaks manually with the characters #13 + #10 using the function chr().
-
1
votes2
answers115
viewsA: What is the linux text editor command that I can see output in real time?
less file.log and after opening the file shift+f will play the same role as Tail. It also allows you to browse the file, search, etc. Anyway, it is a "vi read-only". More details see in this…