Introduction

Linux provides, as standard, many file manipulating programs, for example 'sort' sorts the contents of a file into alphabetical or numerical order (you therefore do not need to write your own sort program). ... or to redirect the output to 'file5.dat': $ sort file4.dat > file5.dat. ................
................