Code <?php class sortFile { function sort ( $file ) { exec ( "cat > temp.txt" ); // Create a temp file exec ( "chmod 777 temp.txt" ); // Give permission for temp.txt exec ( "sort -k1 " . $file . " > temp.txt" ); // sort the first column(k1) of test.txt and save to temp.txt exec ( "rm test.txt" ); // delete test.txt exec ( "mv temp.txt " . $file . "" ); // rename temp.txt to test.txt } } $sortfile = new sortFile(); $sortfile -> sort ( "test.txt" ); ?>
Benjamin Franklin