常用shell脚本

利用openssl随机生成密码:
openssl rand -base64 32 |head -c 10 ; echo
find . -mtime +7 -type f -exec mv {} 202303 ;
ls |grep -v tar |xargs -I {} sudo sh -c " tar czvf '{}'.tar.gz -i {};rm -rf {}"

你可能感兴趣的:(常用shell脚本)