本帖最后由 securitypluscn 于 2018-01-18 15:10 编辑
下边是我写的一个小程序, 我想用AWK显示最后输出结果,在网上搜了半天,不得要领,最后只好用column 命令。请问如何用AWK 输出函数结果。
#! /bin/bash
#This program improves ls command by
#showing numbers of entries in a directory
#showing file size in KB/MB/GB
#showing output in column(s)
#list content in current directory with no argument
#List corresponding contents in the order of multiple arguments
#If the content is directory, shows the numbers of entry,
#otherwise, list the size of file
# Output entry(s) for dirctory and size for file(s)
entry_size(){
for file in *; do
if [[ -d $file ]]; then
[[ ! -r "$file" ]] && echo "$file can't be opened" && continue
entry=$(ls $file | wc -l)
if [[ $entry -gt 1 ]]; then
echo "${file}($entry entries)"
else
echo "${file}($entry entry)"
fi
else
file_size=$(ls -l -d -h $file | awk '{print $5}')
if [[ $file_size =~ ^[0-9]+$ ]]; then
echo "${file}( ${file_size}B )"
else
echo "${file}( $file_size )"
fi
fi
done
}
# main codes
if [[ $# -eq 0 ]]; then
echo
entry_size | column
echo
else
echo
for arg in $@;do
[[ ! -e "$arg" ]] && echo "$arg not exits" && continue
[[ ! -r "$arg" ]] && echo "$arg can't be opened" && continue
echo
echo "Content of \"$arg\""
echo "---------------------------------------------------------------------------------------------------------------------"
cd $arg
entry_size | column
done
echo
fi
|