4 lines
59 B
Plaintext
4 lines
59 B
Plaintext
|
for (( i=$#1-1; i>=0; i-- ))
|
||
|
do
|
||
|
echo -n ${1:$i:1}
|
||
|
done
|