comparison bing4desktop/copy_desktop.sh @ 24:02409f02eea6

bing4desktop-0.240208-0
author prymula <prymula76@outlook.com>
date Thu, 08 Feb 2024 11:37:04 +0100
parents 73fd89b46da4
children 4797b096efab
comparison
equal deleted inserted replaced
23:45b565b7b853 24:02409f02eea6
1 #?/bin/sh 1 #?/bin/sh
2 2 exclude=lost+found
3 MYDIR=/home 3 MYDIR=/home
4 4
5 for file in $(ls ${MYDIR}) ; do\ 5 for file in $(ls ${MYDIR}) ; do\
6 cp bing4desktop.desktop /home/${file}/.local/share/applications 6 if [[ $file == $exclude ]]
7 then
8 cp bing4desktop.desktop /home/${file}/.local/share/applications
9 fi
7 done 10 done