Page MenuHomePhabricator
Paste P8262

(An Untitled Masterwork)
ActivePublic

Authored by Dzahn on Mar 25 2019, 2:11 PM.
Tags
None
Referenced Files
F28464233: raw.txt
Mar 25 2019, 2:11 PM
Subscribers
None
#!/bin/bash
host=labsdb1011
case $host in \
labsdb10[10-12])
echo "labsdb10[10-12] matches";;
*)
echo "nope - no match for labsdb10[10-12] because it's shell globbing"
esac
case $host in \
labsdb101[0-2])
echo "labsdb101[0-2] matches";;
*)
echo "nope"
esac
---
nope - no match for labsdb10[10-12] because it's shell globbing
labsdb101[0-2] matches