How to sort the content of a file?

p3.sh

#!/bin/bash

sort=`sort /etc/passwd`
echo "shorted list are:"
echo "$sort"


:./p3.sh

Post a Comment

Previous Post Next Post