distribution/packages/misc/modules/sources/Remove ._ Files.sh

15 lines
422 B
Bash
Raw Normal View History

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)
# Copyright (C) 2020-present Fewtarius
. /etc/profile
source /usr/bin/env.sh
clear >/dev/console
2022-09-14 00:33:11 +00:00
systemctl stop ${UI_SERVICE}
2022-09-13 22:49:46 +00:00
echo "Cleaning ._ files from /storage/roms" >/dev/console
2022-02-05 14:23:32 +00:00
find /storage/roms -iname '._*' -exec rm -rf {} \;
clear >/dev/console
2022-09-14 00:33:11 +00:00
systemctl start ${UI_SERVICE}