Re: A simple bash case question...

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

 



On Tuesday 02 September 2008 14:40:10 Dan Thurman wrote:
> I am trying to figure out how to do the following:
>
> case $foo in
>
>     "one" || "two)
>        process_One_Two ;;
>     "three")
>        process_Three ;;
>     "four" || "five")
>        process_Four_Five ;;
>     *) echo "Nothing to process" ;;
> esac
>
> The problem I am having is getting "one" || "Two"
> or "four" || "five" to work - so as to consolidate
> two or more strings per case statement line,
> otherwise I would have code duplication.
>
> Any advice?
>
> Thanks!
> Dan
try:

case $foo in
	"one" | "two)
		processOneTwo;;
esac
-- 
Armin
feng.shaun@xxxxxxxxx
"Good thoughts, Good Words, Good deeds." Zorathustra

-- 
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux