我正在尝试使用 tr 命令将文件中的数据加密到存储在 /temp/ 中的临时文件中。这是我到目前为止所拥有的:
echo " file to be encrypted : "
read file
$ cat file | tr "a-wxyz" "d-zabc" > /tmp/file
但显然它没有做我想要的。
我正在尝试使用 tr 命令将文件中的数据加密到存储在 /temp/ 中的临时文件中。这是我到目前为止所拥有的:
echo " file to be encrypted : "
read file
$ cat file | tr "a-wxyz" "d-zabc" > /tmp/file
但显然它没有做我想要的。