We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f3e1c commit f0a12deCopy full SHA for f0a12de
bash_aliases
@@ -529,6 +529,10 @@ function has_files() {
529
return "${retval}"
530
}
531
532
+function TitleCaseConverter() {
533
+ printf "%s" "$1" | sed 's/.*/\L&/; s/[a-z]*/\u&/g'
534
+}
535
+
536
# Sourcing Operating System Specific bash_aliases
537
if [ -f ~/.bash_os_aliases ]; then
538
# shellcheck source=/dev/null
0 commit comments