1

我已经编写了一个函数来对文件、文件夹等的不同方面进行一些记录,并且我将让这个函数自动向我的员工发送电子邮件。这一切都很好,但我不介意一些指示和帮助使编队更好 - 这将作为脚本的一部分通过 mailutils 发送出去。

只是在寻找一些不错的间距技巧等

function report(){
lsb_release -a
echo "OS:               $(uname -s)"
echo "ARCH:             $(uname -m)"
echo "VER:              $(uname -r)"

echo "Apache running "
ps aux|grep -i apache2

echo "Showing if SSL is open"
apache2ctl -M | grep ssl

echo "Space on local disk"
df -h

echo "Showing permissions for the web folders"
echo $'*** /var/www// ***'
ls -l /var/www | awk '{print $1 "  " $3 "  " $4 "  " $9}'
ls -l /var/www/user1 | awk '{print $1 "  " $3 "  " $4 "  " $9}'
ls -l /var/www/user2 | awk '{print $1 "  " $3 "  " $4 "  " $9}'

echo "Showing network status"
ifconfig eth0
echo " DNS "
tail /etc/resolv.conf

echo "Current workspaces set up on the local server "
grep user2 /var/www/temp/text.txt | grep -E -o '[0-9]+[0-9]'

}
4

1 回答 1

0

在使用 awk 或 cut 之后,尝试使用“column”命令代替或使用管道。

ls -l | awk '{print $1" "$3" "$4" "$9}' | tail -n +2 | column -t

查看“mount”和“mount | column -t”或“df -PH and df -PH | column -t”之间的区别

如果您想连接具有相同数字或关系字段的信息列,您可以使用流程重定向和“粘贴”。

paste -d ' ' <(cat /sys/class/scsi_host/host*/device/fc_host:host*/port_name) \
             <(cat /sys/class/scsi_host/host*/device/fc_host:host*/speed) \
             <(cat /sys/class/scsi_host/host*/device/fc_host:host*/port_state)
0x218000e05a0001aa 4 Gbit Online
0x218000e05a2001aa 4 Gbit Online
于 2013-03-14T17:55:50.340 回答