Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6223663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:31:44+00:00 2026-05-24T08:31:44+00:00

I am wrinting a shell script and have a variable like this: something-that-is-hyphenated .

  • 0

I am wrinting a shell script and have a variable like this: something-that-is-hyphenated.

I need to use it in various points in the script as:

something-that-is-hyphenated, somethingthatishyphenated, SomethingThatIsHyphenated

I have managed to change it to somethingthatishyphenated by stripping out - using sed "s/-//g".

I am sure there is a simpler way, and also, need to know how to get the camel cased version.

Edit: Working function derived from @Michał’s answer

function hyphenToCamel {
    tr '-' '\n' | awk '{printf "%s%s", toupper(substr($0,1,1)), substr($0,2)}'
}

CAMEL=$(echo something-that-is-hyphenated | hyphenToCamel)
echo $CAMEL

Edit: Finally, a sed one liner thanks to @glenn

echo a-hyphenated-string | sed -E "s/(^|-)([a-z])/\u\2/g"
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T08:31:46+00:00Added an answer on May 24, 2026 at 8:31 am

    a GNU sed one-liner

    echo something-that-is-hyphenated | 
    sed -e 's/-\([a-z]\)/\u\1/g' -e 's/^[a-z]/\u&/'
    

    \u in the replacement string is documented in the sed manual.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a shell script. A variable will have a url that will look
I'm writing a Bourne shell script and have a password input like this: echo
I am writing a shell script that takes file paths as input. For this
I writing a ksh shell script and I have long comma separated string that
I have a shell script that is created inside a php script (given full
I am writing a shell script for some purpose. I have a variable of
Writing a shell script that pretty much wraps around an Awk script. I'd like
In a shell script one might do something like: myvar='default_value' source myfile.sh echo $myvar
I'm writing a shell script to do some web server configuration. I need to
I'm writing a shell script and I need to strip FIND ME out of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.