root/trunk/lib/runscripts/import.run @ 12642
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 |
export_()
|
24 |
{
|
25 |
echo_func |
26 |
}
|
27 |
|
28 |
all()
|
29 |
{
|
30 |
echo_func |
31 |
import |
32 |
export_ |
33 |
}
|
34 |
|
35 |
fi
|