Project

General

Profile

1
#!/bin/bash -e
2

    
3
if false; then #### run script template:
4
#!/bin/bash -e
5
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/import.run
6

    
7
import ()
8
{
9
	echo_func "$@"
10
	import_cmds
11
}
12
fi ####
13

    
14
. "$(dirname "${BASH_SOURCE[0]}")"/util.run
15

    
16
if self_not_included; then
17

    
18
import ()
19
{
20
	echo_func "$@"
21
}
22

    
23
all ()
24
{
25
	echo_func "$@"
26
	import
27
}
28

    
29
fi
(21-21/54)