-
Notifications
You must be signed in to change notification settings - Fork 0
/
callable.sh
32 lines (28 loc) · 927 Bytes
/
callable.sh
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
#!/bin/bash
##################################################
# Displays the HELP.txt file
##################################################
Env__callable_main(){
Env__callable_help
}
##################################################
# Displays the HELP.txt file
##################################################
Env__callable_help(){
more "$Ash__ACTIVE_MODULE_DIRECTORY/HELP.txt"
}
##################################################
# Sets the new env filename that will be loaded
# when ash starts up.
##################################################
Env__callable_set(){
Env__set_filename "$1"
Logger__alert "Env File: $(Env__get_filename)"
}
##################################################
# Displays the current .env filename that will be
# loaded when ash starts up.
##################################################
Env__callable_get(){
Logger__alert "Env File: $(Env__get_filename)"
}