Skip to content

Commit

Permalink
remade scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Jan 13, 2024
1 parent 31a319a commit 49749f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/mulle-bashfunctions-all-embed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5100,6 +5100,12 @@ function r_smart_file_downcase_identifier()

r_de_camel_case_identifier "$s"
r_lowercase "${RVAL}"

case "${s}" in
+(_)[A-Z]*)
RVAL="${RVAL#_}"
;;
esac
}


Expand Down
6 changes: 6 additions & 0 deletions src/mulle-bashfunctions-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5282,6 +5282,12 @@ function r_smart_file_downcase_identifier()

r_de_camel_case_identifier "$s"
r_lowercase "${RVAL}"

case "${s}" in
+(_)[A-Z]*)
RVAL="${RVAL#_}"
;;
esac
}


Expand Down

0 comments on commit 49749f0

Please sign in to comment.