mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-15 04:51:19 +02:00
11 lines
364 B
Plaintext
11 lines
364 B
Plaintext
--- tests/common/init.sh Mon Apr 11 22:24:17 2005
|
|
+++ tests/common/init.sh Fri Jul 22 16:55:36 2005
|
|
@@ -197,5 +197,6 @@
|
|
case $HOST in
|
|
*\.*)
|
|
- HOST=`echo $HOST | sed -e "s/\..*//"`
|
|
+ DOMSUF=${HOST#*.} # remove Smallest Prefix matching ``*.''
|
|
+ HOST=${HOST%%.*} # remove Largest Suffix ``.*''. See sh(1)
|
|
;;
|
|
?*)
|