写一个将参数base64加密输出的shell脚本
时间: 2024-03-24 18:41:59 浏览: 232
shell脚本写的加密脚本
好的,以下是一个将参数base64加密输出的shell脚本:
```bash
#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "Usage: $0 <string>"
exit 1
fi
echo -n $1 | base64
```
使用方法:
```bash
$ ./encode.sh "Hello World!"
SGVsbG8gV29ybGQhCg==
```
请注意,此脚本仅适用于Linux和macOS操作系统,Windows操作系统需要使用其他工具进行base64编码。
阅读全文