Advanced search

2 search results

  • Software / Linux / Manuals
    Manual: vi
    PROLOG This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the ...
  • Software / Linux / Command Line
    How do I convert text in a file to lower case?
    Converting the content of a file to lowercase a simple process using ‘tr’ cat input.txt | tr ‘[:upper:]‘ ‘[:lower:]‘ > output.txt Remember ...