#!/bin/bash # 编写一个Shell脚本,接受一个字符串作为参数,并将该字符串逆序输出。 # 【提示】 echo "abc"|rev if [ $# -ne 1 ]; then echo "请提供一个字符串作为参数" exit 1 fi echo "$1"|rev