code cleanup

This commit is contained in:
inxi-svn 2010-02-01 06:21:46 +00:00
parent 95dc7d47db
commit 0a7cdb5ab7

2
inxi
View file

@ -3264,7 +3264,7 @@ $repo_data_working"
elif [[ -f $pacman_conf ]];then elif [[ -f $pacman_conf ]];then
REPO_FILE_ID='arch repo servers' REPO_FILE_ID='arch repo servers'
# get list of mirror include files, trim white space off ends # get list of mirror include files, trim white space off ends
repo_data_working="$( grep -Ei '^Include' $pacman_conf | grep -vi 'IncludePath' | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' )" repo_data_working="$( grep -i '^Include' $pacman_conf | grep -vi 'IncludePath' | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' )"
repo_data_working=$( sort -bu <<< "$repo_data_working" | uniq ) repo_data_working=$( sort -bu <<< "$repo_data_working" | uniq )
repo_data_working="$repo_data_working $pacman_conf" repo_data_working="$repo_data_working $pacman_conf"
for repo_file in $repo_data_working for repo_file in $repo_data_working