Skip to content

Instantly share code, notes, and snippets.

@inceabdullah
Created March 23, 2024 17:53
Show Gist options
  • Save inceabdullah/e75fa24c463143e2c49912a7aa556e3d to your computer and use it in GitHub Desktop.
Save inceabdullah/e75fa24c463143e2c49912a7aa556e3d to your computer and use it in GitHub Desktop.
Increment/Next Letter
#!/bin/bash
next_letter() {
# A -> B, B -> C, AZ -> BA
local input_letter=$1
out_letter=$(echo "$input_letter" | tr "A-Z" "B-ZA")
echo $out_letter
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment