Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Forked from luciomartinez/slash.sh
Created June 14, 2020 12:27
Show Gist options
  • Save tomcbe/7ac94a4fe8b62d21cfd4d2ac016a5cc4 to your computer and use it in GitHub Desktop.
Save tomcbe/7ac94a4fe8b62d21cfd4d2ac016a5cc4 to your computer and use it in GitHub Desktop.
Add or Remove trailing slash in bash
### Add trailing slash if needed
STR="/i/am/a/path"
length=${#STR}
last_char=${STR:length-1:1}
[[ $last_char != "/" ]] && STR="$STR/"; :
echo "$STR" # => /i/am/a/path/
### Remove trailing slash if given
STR="/i/am/a/path/"
length=${#STR}
last_char=${STR:length-1:1}
[[ $last_char == "/" ]] && STR=${STR:0:length-1}; :
echo "$STR" # => /i/am/a/path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment