So sortieren Sie unsortierte Datei und schreiben Sie sie in eine neue Datei -Bash

# Will Sort the unsorted file and will write it to a new file 
sort -V $unsorted > $sorted
Mero