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 7591179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:35:20+00:00 2026-05-30T20:35:20+00:00

here is the shell script: #!/bin/bash version=0.01; fibonacci() { n=${1:?If you want the nth

  • 0

here is the shell script:

#!/bin/bash

version="0.01";

fibonacci() {
    n=${1:?If you want the nth fibonacci number, you must supply n as the first parameter.}
    if [ $n -le 1 ]; then 
    echo $n
    else
    l=`fibonacci $((n-1))`
    r=`fibonacci $((n-2))`
    echo $((l + r))
    fi
}

for i in `seq 1 10`
do
  result=$(fibonacci $i)
  echo "i=$i result=$result"
done

And i come to confused about this line:

n=${1:?If you want the nth fibonacci number, you must supply n as the first parameter.}

i look for the manual of shell,but get nothing about what does the “:?” actually mean.

thx

  • 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-30T20:35:21+00:00Added an answer on May 30, 2026 at 8:35 pm

    from man bash:

    ${parameter:?word}
              Display Error if Null or Unset.  If parameter is null or unset, the  expansion  of  word
              (or  a  message  to that effect if word is not present) is written to the standard error
              and the shell, if it is not interactive, exits.  Otherwise, the value  of  parameter  is
              substituted.
    

    in this case the parameter being checked is $1 (the first positional parameter)

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

Sidebar

Related Questions

I have a shell script script here as below: #!/bin/bash CPUSELECTION=1 386SX off \
My shell script is as shown below: #!/bin/bash # Make sure only root can
Here's my personal shell's 'head file' tool.h #!/bin/echo Warnning! this libiary must be scourced
Here's a snippet of code from a shell script I have written: for src
I want to do formatting using echo in shell scripting. Here is a small
I want to read a file by shell script, and process it line by
Part of a bash script I'm making involves rar splitting files and then moving
In bash I can create a script with a here-doc like so as per
I have a script written the unix shell language (NOT in bash or any
I'm writing a bash shell script that uses a case with three options: If

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.