摘要: #!/bin/bash # 密码 password="your_password_here" # 加密函数 encrypt() { input_file="$1" output_file="$input_file.enc" openssl enc -aes-256-cbc -salt -in "$i 阅读全文
posted @ 2024-04-17 17:56 Leonardo-li 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1.执行命令 #光标隐藏-终端命令 echo -e "\033[?25l" #光标显示-终端命令 echo -e "\033[?25h" 2.永久执行 vim /etc/profile 添加到最后一行 echo -e "\033[?25h" source /etc/profile 阅读全文
posted @ 2024-04-17 10:08 Leonardo-li 阅读(118) 评论(0) 推荐(0) 编辑