summaryrefslogtreecommitdiff
path: root/scripts/conf_var
blob: b2bffaf08b3e001978cfa1332be4d5b7e5f1949c (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
if [ -r "conf/$1" ]; then
 exec cat "conf/$1"
else
 echo "$2"
 exec false
fi