27 Jun
2003
27 Jun
'03
18:14
Op vrijdag 27 juni 2003 21:27, schreef dennis tuchler:
How does one make a taxt file from the command line (like the DOS "copy con" command)? I looked for this information in various Linux books and found nothing.
There is always more than one option. touch filename.txt ; will create a empty file vi filename.txt ; will open a new text file in the advanced text editor vi (try 'man vi' for commands). cat>filename.txt ; will make simple text file (as described byothers already) or try (if installed): joe filename.txt ; this will give you another simple editor (press ctrl+k+x to save and exit). or try (even better): pico filename.txt enough choice -- Cheers, Jeroen