【1】常见小技巧
【1.0】脚本汇总
sudo echo "export TIME_STYLE='+%Y-%m-%d %H:%M:%S'" >> /etc/profile && source /etc/profile
sudo echo "export PS1='[u@h w]$ '">>/etc/profile && source /etc/profile
【1.1】以年-月-日格式显示日期
sudo echo "export TIME_STYLE='+%Y-%m-%d %H:%M:%S'" >> /etc/profile && source /etc/profile
【1.2】linux显示当前路径的绝对路径
具体参考:https://www.cnblogs.com/gered/p/11364053.html
sudo echo "export PS1='[u@h w]$ '">>/etc/profile && source /etc/profile
【1.3】删除过滤出来的文件
#删除当前目录下,不包含aaa的所有文件
ll |grep -v "aaa"|grep .sql|awk '{print $NF}'|xargs rm -f