1
0
Fork 0
old-dotfiles/.config/fish/functions/rot1.fish

3 lines
99 B
Fish
Raw Normal View History

2023-02-18 21:12:37 +01:00
function rot1 --description "decodes a ROT-1 string"
echo "$argv" | tr 'b-za-aB-ZA-A' 'a-zA-Z'
end