Using the return value of a function in a shell script

Source: Internet
Author: User

#!/bin/bash-  function mytest () {    echo "arg1 = $"      If [$ = "1"]; then        return 1    else        return 0
   
    fi}if MyTest 2; Then        echo "Aaaaaaaaaa" fi
   

Execution Result:

Change it a little bit.

#!/bin/bash-
function mytest ()
{
echo "Arg1 = $"
if [$ = "1"]; then
Return 1
Else
return 0
Fi
}
If mytest 1; Then
echo "AAAAAAAAAA"
Fi

---------------------------------------------------------------------------

The variables defined in the shell are global, and the variables defined above the function are still visible inside the function

#!/bin/bash-    g_var=  function mytest2 ()  {      echo "mytest2"      echo "args $"      g_var=$1        return 0  }    mytest2 1  echo "return $?"    Echo  

  

Using the return value of a function in a shell script

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.