diff options
author | James Rayner <james@archlinux.org> | 2008-01-13 09:42:32 +0100 |
---|---|---|
committer | James Rayner <james@archlinux.org> | 2008-01-13 09:42:32 +0100 |
commit | c2ecfcabfd627bf4e0d2e65f3288c511d2634074 (patch) | |
tree | a57d70e2d466546777c614ac162ddb4f800ed785 /src/netcfg-menu | |
parent | d2cf391bfe6d77598f9575ce4c74a27b6f9f9976 (diff) | |
download | netctl-c2ecfcabfd627bf4e0d2e65f3288c511d2634074.tar.gz netctl-c2ecfcabfd627bf4e0d2e65f3288c511d2634074.tar.xz |
Sort netcfg-menu alphabetically
Diffstat (limited to 'src/netcfg-menu')
-rwxr-xr-x | src/netcfg-menu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netcfg-menu b/src/netcfg-menu index 4da1291..01d251a 100755 --- a/src/netcfg-menu +++ b/src/netcfg-menu @@ -7,7 +7,7 @@ # Scan all profiles i=0 -for prof in `find -L $PROFILE_DIR -maxdepth 1 -type f -printf "%f\n"`; do +for prof in `find -L $PROFILE_DIR -maxdepth 1 -type f -printf "%f\n"|sort`; do # if there is a profile called "main", Use as default [ "$prof" = "main" ] && DEFAULT=$prof unset DESCRIPTION |