2022-02-05 14:23:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
|
2023-10-24 16:00:57 +00:00
|
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
2022-02-05 14:23:32 +00:00
|
|
|
|
|
|
|
. /etc/profile
|
2022-09-14 21:35:38 +00:00
|
|
|
clear
|
|
|
|
echo "Cleaning ._ files from /storage/roms"
|
2022-02-05 14:23:32 +00:00
|
|
|
find /storage/roms -iname '._*' -exec rm -rf {} \;
|
2022-09-14 21:35:38 +00:00
|
|
|
clear
|