-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GitHub Actions
committed
Jan 10, 2024
1 parent
a5b359a
commit c9b6fd6
Showing
7 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
|
||
# @description Configng Library Help message. | ||
# @requirments none | ||
# @exitcode 0 If successful. | ||
# @default none | ||
# @options none | ||
|
||
|
||
|
||
function help::configng(){ | ||
clear | ||
generate_help ; exit 0 | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
|
||
# @description armbian-intrface Help message. | ||
# @requirments none | ||
# @exitcode 0 If successful. | ||
# @default none | ||
# @options none | ||
|
||
|
||
|
||
function help::interface(){ | ||
clear | ||
[[ -f /usr/bin/armbian-interface ]] && /usr/bin/armbian-interface -h || exit 2 | ||
./armbian-interface --help | ./armbian-interface -o ; exit 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
|
||
# @description armbianmonitor Help message. | ||
# @requirments none | ||
# @exitcode 0 If successful. | ||
# @default none | ||
# @options none | ||
|
||
|
||
|
||
function help::monitor(){ | ||
clear | ||
[[ -f /usr/bin/armbianmonitor ]] && /usr/bin/armbianmonitor -h || exit 2 | ||
exit 0 | ||
} |