Re: OT: bash parameter substitutions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Nov 5, 2018 at 7:51 AM Mike Wright <nobody@xxxxxxxxxxxxxxxxxxxx> wrote:
>
> There is such a thing as too terse. Can somebody explain what this
> cryptic snippet means? I get the "substitute part; it's the
> "error,exit" part that has me confounded.
>
> +------------------+--------------------+---------------+--------------+
> |                  | parameter          | parameter     | parameter    |
> |                  | Set and Not Null   | Set But Null  | Unset        |
> +------------------+--------------------+---------------+--------------+
> |${parameter:?word}|substitute parameter|error,exit     |error,exit    |
> |${parameter?word} |substitute parameter|substitute null|error,exit    |
> +------------------+--------------------+---------------+--------------+

In the case of ":?word" and "unset", for example, it'll print "word",
and exit the script if it's running within a script.

th macbook12 ~ $ bash --version
GNU bash, version 4.4.23(1)-release (x86_64-apple-darwin18.0.0)
...

th macbook12 ~ $ echo ${PS1:?fedora}
\u \h \w $

th macbook12 ~ $ echo ${PS5:?fedora}
-bash: PS5: fedora

th macbook12 ~ $ vi mike.sh

th macbook12 ~ $ chmod +x mike.sh

th macbook12 ~ $ cat mike.sh
#!/bin/sh
one=ONE
three=THREE
echo "print one"
echo ${one:?fedora}
echo
echo "print two"
echo ${PS5:?fedora}
echo
echo "print three"
echo ${three}

th macbook12 ~ $ ./mike.sh
print one
ONE

print two
./mike.sh: line 8: PS5: fedora
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx



[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux