Sophie

Sophie

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

gtkdialog-0.8.3-1.mga5.x86_64.rpm

#!/bin/sh

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

functmpGet() {
	local input

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