2023-12-15 23:44:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
|
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
|
|
|
|
|
|
|
|
find /storage/overlays/ -name '*.cfg' -print0 |
|
|
|
|
while IFS= read -r -d '' line; do
|
|
|
|
echo ${line#/storage/overlays/},
|
2024-01-14 07:57:06 +00:00
|
|
|
done | sort
|
|
|
|
|