small fix & suggestion
starnightcyber opened this issue · 1 comments
starnightcyber commented
内存占用排序,应该是 -k4,应该是忘记改参数了
Line 141 in 833beaf
另外,提个小建议:
代码中有很多输出字体颜色标记,可以封装成 print_msg 函数,这样可以简化代码,增加可读性,类似于如下。
#!/bin/bash
print_msg() {
echo -e "\e[00;31m[+]$1\e[00m"
}
print_msg 'hello'
last but not least,很棒的实现,学到很多,shell 6 的起飞 🛫
al0ne commented
NBNB 我试试 感谢反馈