root/lib/import.run @ 8478
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 |
import ()
|
17 |
{
|
18 |
echo_func "$@" |
19 |
}
|
20 |
|
21 |
all ()
|
22 |
{
|
23 |
echo_func "$@" |
24 |
import |
25 |
}
|