forked from emkey1/AOK-Filesystem-Tools
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
33 changed files
with
915 additions
and
696 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
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
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
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,12 @@ | ||
#!/bin/sh | ||
# | ||
# Part of https://github.com/jaclu/AOK-Filesystem-Tools | ||
# | ||
# License: MIT | ||
# | ||
# Copyright (c) 2024: [email protected] | ||
# | ||
# Displays Debian version | ||
# | ||
|
||
echo "Debian version: $(cat /etc/debian_version)" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
# | ||
# Part of https://github.com/jaclu/AOK-Filesystem-Tools | ||
# | ||
# License: MIT | ||
# | ||
# Copyright (c) 2024: [email protected] | ||
# | ||
# Displays iSH version | ||
# | ||
|
||
ish_version="$(cat /proc/ish/version 2>/dev/null)" | ||
[ -z "$ish_version" ] && ish_version="Cant be detected whilst chrooted" | ||
echo "iSH release: $ish_version" |
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,14 @@ | ||
#!/bin/sh | ||
# | ||
# Part of https://github.com/jaclu/AOK-Filesystem-Tools | ||
# | ||
# License: MIT | ||
# | ||
# Copyright (c) 2024: [email protected] | ||
# | ||
# Displays AOK release info | ||
# | ||
|
||
aok_release="$(cat /etc/aok-fs-release 2>/dev/null)" | ||
[ -z "$aok_release" ] && aok_release="Not found: /etc/aok-fs-release" | ||
echo "AOK-FS release: $aok_release" |
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,13 @@ | ||
#!/bin/sh | ||
# | ||
# Part of https://github.com/jaclu/AOK-Filesystem-Tools | ||
# | ||
# License: MIT | ||
# | ||
# Copyright (c) 2024: [email protected] | ||
# | ||
# Clear color for aok version info | ||
# | ||
|
||
# printf "\e[0m" | ||
echo |
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
Oops, something went wrong.