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

  • Home
  • SEARCH
  • 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 8947705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:50:03+00:00 2026-06-15T12:50:03+00:00

Possible Duplicate: Using getopts in bash shell script to get long and short command

  • 0

Possible Duplicate:
Using getopts in bash shell script to get long and short command line options

This is the code i’ve written

#! /bin/bash

getopts master $1

while getopts ":master" opt; do
  case $opt in
    master)
      echo "-master was triggered! $1 was entered" >&2
      ;;
    \?)
      echo "Invalid option: -$OPTARG" >&2
      ;;
  esac
done

and this is the output i’m getting-

]$ ./test123.sh -master 123
./test123.sh: line 3: getopts: `-master': not a valid identifier

How do i define a user defined option?

  • 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-06-15T12:50:05+00:00Added an answer on June 15, 2026 at 12:50 pm

    I think there are a couple of problems.

    1. I don’t understand what this (getopts master $1) is doing and you can remove it
    2. I think you need single char arguments (i.e. -m vs -master)

    e.g. the below seems to work:

    #!/bin/bash
    while getopts ":m" opt; do
      case $opt in
        m)
          echo "-m was triggered! $1 was entered" >&2
          ;;
        \?)
          echo "Invalid option: -$OPTARG" >&2
          ;;
      esac
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Using delegate() with hover()? I am trying this code, but apparently I
Possible Duplicate: using bash: write bit representation of integer to file I need to
Possible Duplicate: Case Order by using Null I'm looking to get a list of
Possible Duplicate: Using var outside of a method I've searched for this a bit,
Possible Duplicate: using mysql_close() Are mysql_close and pg_close required ? In some script there
Possible Duplicate: Using Linq to get the last N elements of a collection? In
Possible Duplicate: C++ using this pointer in constructors Like the title, may I do
Possible Duplicate: Using same MySQL Connection in different PHP pages This is completely new
Possible Duplicate: using Clipboard in WP7 programming For example you have a long text
Possible Duplicate: Using HTML comment tag <!— --> still relevant around JavaScript code? Kind

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.