Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 13f5dcef5358e9d5a2a5a1ae6baf28fc > files > 148

gtkdialog-0.8.3-1.mga5.x86_64.rpm

#!/bin/sh

## Get a variable [maintained as a file] from the local data directory.
## On entry: $1 = name
##  On exit: echoes value

funcrcGet() {
	local input

	## Fast portable builtin found, better than:
	##   cat $LOCAL_DATA_DIR/$1
	##   echo `<$LOCAL_DATA_DIR/$1`
	read -r input < $LOCAL_DATA_DIR/$1
	echo "$input"
}