12 lines
170 B
Bash
Raw Permalink Normal View History

2018-05-31 20:17:42 +02:00
#!/bin/bash
echo try to import functions of script "$1"
export "mod=$1"
[[ -s "$mod" ]] && source "$mod"
ja
2018-05-31 20:23:11 +02:00
[ "$?" != "0" ] && echo use $0 with doja.sh next time ;)