summaryrefslogtreecommitdiff
path: root/etc/functions/xsource
blob: 2546965e142329309643fe8e6b638de4fe54fe19 (plain)
1
2
3
4
5
6
7
8
## vim:ft=zsh
# Note: This function's behaviour differs hrom source.
# With source, parameters declared local are available to the sourcing script.
# With xsource, parameters declared local will NOT be available.
# Keep that in mind when using this function
if [[ -r $1 ]] {
	source $1
}