-
Notifications
You must be signed in to change notification settings - Fork 11
/
init
executable file
·48 lines (37 loc) · 1.49 KB
/
init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
####################################################################
# SKULL Framework - by Tomas Pollak (github.com/tomas)
# (c) 2010 - Fork Ltd
# License: GPLv3
####################################################################
skull_path="${BASH_SOURCE[0]%/*}"
[ -f "$skull_path" ] && skull_path=$(dirname "$skull_path")
PATH=/bin:/sbin:/usr/bin:/usr/sbin:$PATH
####################################################################
# bash behaviour
####################################################################
# set +e
set +bm
shopt -s expand_aliases
shopt -s extglob
####################################################################
# base requires
####################################################################
source "${skull_path}/base/loader.sh"
load "${skull_path}/base/function.sh"
load "${skull_path}/base/logger.sh"
load "${skull_path}/base/env.sh" && Env.set
load "${skull_path}/base/class.sh"
load "${skull_path}/base/system"
####################################################################
# libs and utils
####################################################################
load "${skull_path}/lib/*.sh"
load "${skull_path}/util/*.sh"
load "${skull_path}/plugins/*"
####################################################################
# initialization
####################################################################
# init_classes Array Dir File Hash Numeric Process String XmlNode
init_classes Array Hash File Numeric String
debug "Skull framework ready!"