3 lines
99 B
Fish
3 lines
99 B
Fish
|
function rot1 --description "decodes a ROT-1 string"
|
||
|
echo "$argv" | tr 'b-za-aB-ZA-A' 'a-zA-Z'
|
||
|
end
|