Files
2021-08-17 14:58:43 +08:00

23 lines
368 B
Bash

#!/bin/bash
set -e
#DEBHELPER#
home="/home/"
db_file="/.config/ukui/Clock_database.db"
feedback="/.config/ukui/url.conf"
for file in $(ls /home)
do
db_file_path=${home}${file}${db_file}
feedback_path=${home}${file}${feedback}
if [ -f "$db_file_path" ]; then
rm "$db_file_path"
fi
if [ -f "$feedback_path" ]; then
rm "$feedback_path"
fi
done