├── Binary_Modules ├── GetAllWifiDevices │ ├── GetAllWifiDevices.go │ ├── go.mod │ └── go.sum ├── NetworkManager-GetAllAccessPoints │ ├── NetworkManager-GetAllAccessPoints.go │ ├── go.mod │ ├── go.sum │ └── todo ├── NetworkManager-GetAllDevices │ ├── NetworkManager-GetAllDevices.go │ ├── go.mod │ └── go.sum ├── README.md ├── TryToConnectToAccessPoint │ ├── TryToConnectToAccessPoint.go │ ├── go.mod │ └── go.sum └── build.sh ├── LICENSE ├── Libraries ├── colors │ └── colors.sh ├── depcheck │ ├── README.md │ ├── depcheck.sh │ └── doc.md ├── list │ ├── README.md │ ├── doc.md │ └── list.sh └── logging │ ├── README.md │ ├── doc.md │ └── logging.sh ├── README.md ├── Scripts ├── ABS Uninstall │ ├── RAEDME.md │ └── abs-uninstall.sh ├── ABS Update │ ├── README.md │ └── abs-update.sh ├── Beautify Ifconfig │ ├── README.md │ └── beautify-ifconfig.sh ├── DNS Switcher │ ├── README.md │ └── dns-switcher.sh ├── Eye Protector │ ├── README.md │ └── eye-protector.sh ├── Installpkg │ ├── README.md │ ├── doc.md │ └── installpkg.sh ├── Internet Problem Fixer │ ├── README.md │ ├── internet-problem-fixer.sh │ ├── notes.md │ └── todo ├── Internet Status Checker │ ├── README.md │ └── internet-status-checker.sh ├── Move And Link │ ├── README.md │ └── move-and-link.sh ├── Package Files │ ├── README.md │ └── package-files.sh └── Share File │ ├── README.md │ └── share-file.sh ├── install.sh └── release.sh /Binary_Modules/GetAllWifiDevices/GetAllWifiDevices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/GetAllWifiDevices/GetAllWifiDevices.go -------------------------------------------------------------------------------- /Binary_Modules/GetAllWifiDevices/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/GetAllWifiDevices/go.mod -------------------------------------------------------------------------------- /Binary_Modules/GetAllWifiDevices/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/GetAllWifiDevices/go.sum -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllAccessPoints/NetworkManager-GetAllAccessPoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllAccessPoints/NetworkManager-GetAllAccessPoints.go -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllAccessPoints/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllAccessPoints/go.mod -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllAccessPoints/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllAccessPoints/go.sum -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllAccessPoints/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllAccessPoints/todo -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllDevices/NetworkManager-GetAllDevices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllDevices/NetworkManager-GetAllDevices.go -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllDevices/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllDevices/go.mod -------------------------------------------------------------------------------- /Binary_Modules/NetworkManager-GetAllDevices/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/NetworkManager-GetAllDevices/go.sum -------------------------------------------------------------------------------- /Binary_Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/README.md -------------------------------------------------------------------------------- /Binary_Modules/TryToConnectToAccessPoint/TryToConnectToAccessPoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/TryToConnectToAccessPoint/TryToConnectToAccessPoint.go -------------------------------------------------------------------------------- /Binary_Modules/TryToConnectToAccessPoint/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/TryToConnectToAccessPoint/go.mod -------------------------------------------------------------------------------- /Binary_Modules/TryToConnectToAccessPoint/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/TryToConnectToAccessPoint/go.sum -------------------------------------------------------------------------------- /Binary_Modules/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Binary_Modules/build.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/colors/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/colors/colors.sh -------------------------------------------------------------------------------- /Libraries/depcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/depcheck/README.md -------------------------------------------------------------------------------- /Libraries/depcheck/depcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/depcheck/depcheck.sh -------------------------------------------------------------------------------- /Libraries/depcheck/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/depcheck/doc.md -------------------------------------------------------------------------------- /Libraries/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/list/README.md -------------------------------------------------------------------------------- /Libraries/list/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/list/doc.md -------------------------------------------------------------------------------- /Libraries/list/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/list/list.sh -------------------------------------------------------------------------------- /Libraries/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/logging/README.md -------------------------------------------------------------------------------- /Libraries/logging/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/logging/doc.md -------------------------------------------------------------------------------- /Libraries/logging/logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Libraries/logging/logging.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/ABS Uninstall/RAEDME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/ABS Uninstall/RAEDME.md -------------------------------------------------------------------------------- /Scripts/ABS Uninstall/abs-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/ABS Uninstall/abs-uninstall.sh -------------------------------------------------------------------------------- /Scripts/ABS Update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/ABS Update/README.md -------------------------------------------------------------------------------- /Scripts/ABS Update/abs-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/ABS Update/abs-update.sh -------------------------------------------------------------------------------- /Scripts/Beautify Ifconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Beautify Ifconfig/README.md -------------------------------------------------------------------------------- /Scripts/Beautify Ifconfig/beautify-ifconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Beautify Ifconfig/beautify-ifconfig.sh -------------------------------------------------------------------------------- /Scripts/DNS Switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/DNS Switcher/README.md -------------------------------------------------------------------------------- /Scripts/DNS Switcher/dns-switcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/DNS Switcher/dns-switcher.sh -------------------------------------------------------------------------------- /Scripts/Eye Protector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Eye Protector/README.md -------------------------------------------------------------------------------- /Scripts/Eye Protector/eye-protector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Eye Protector/eye-protector.sh -------------------------------------------------------------------------------- /Scripts/Installpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Installpkg/README.md -------------------------------------------------------------------------------- /Scripts/Installpkg/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Installpkg/doc.md -------------------------------------------------------------------------------- /Scripts/Installpkg/installpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Installpkg/installpkg.sh -------------------------------------------------------------------------------- /Scripts/Internet Problem Fixer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Problem Fixer/README.md -------------------------------------------------------------------------------- /Scripts/Internet Problem Fixer/internet-problem-fixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Problem Fixer/internet-problem-fixer.sh -------------------------------------------------------------------------------- /Scripts/Internet Problem Fixer/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Problem Fixer/notes.md -------------------------------------------------------------------------------- /Scripts/Internet Problem Fixer/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Problem Fixer/todo -------------------------------------------------------------------------------- /Scripts/Internet Status Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Status Checker/README.md -------------------------------------------------------------------------------- /Scripts/Internet Status Checker/internet-status-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Internet Status Checker/internet-status-checker.sh -------------------------------------------------------------------------------- /Scripts/Move And Link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Move And Link/README.md -------------------------------------------------------------------------------- /Scripts/Move And Link/move-and-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Move And Link/move-and-link.sh -------------------------------------------------------------------------------- /Scripts/Package Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Package Files/README.md -------------------------------------------------------------------------------- /Scripts/Package Files/package-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Package Files/package-files.sh -------------------------------------------------------------------------------- /Scripts/Share File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Share File/README.md -------------------------------------------------------------------------------- /Scripts/Share File/share-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/Scripts/Share File/share-file.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/install.sh -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepsoh/awesome-bash-scripts/HEAD/release.sh --------------------------------------------------------------------------------