-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hide_all_keys.sh
executable file
·57 lines (54 loc) · 1.35 KB
/
hide_all_keys.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
CONFDIR="$HOME/src/MirrorCommand/config"
BINDIR="$HOME/src/MirrorCommand/bin"
cd "${CONFDIR}"
echo "Hiding keys in $CONFDIR"
../hide_keys.sh
for i in Artists JAV Models Photos Photographers Templates YouTube
do
[ -d $i ] && {
cd $i
echo "Hiding keys in $i"
../../hide_keys.sh
cd ..
}
done
cd "${CONFDIR}/../config-landscape"
echo "Hiding keys in $CONFDIR/../config-landscape"
../hide_keys.sh
for i in Artists JAV Models Photos Photographers Templates YouTube
do
[ -d $i ] && {
cd $i
echo "Hiding keys in ../config-landscape/$i"
../../hide_keys.sh
cd ..
}
done
cd "${CONFDIR}/../config-notelegram"
echo "Hiding keys in $CONFDIR/../config-notelegram"
../hide_keys.sh
for i in Artists JAV Models Photos Photographers Templates YouTube
do
[ -d $i ] && {
cd $i
echo "Hiding keys in ../config-notelegram/$i"
../../hide_keys.sh
cd ..
}
done
cd "${CONFDIR}/../config-landscape-notelegram"
echo "Hiding keys in $CONFDIR/../config-landscape-notelegram"
../hide_keys.sh
for i in Artists JAV Models Photos Photographers Templates YouTube
do
[ -d $i ] && {
cd $i
echo "Hiding keys in ../config-landscape-notelegram/$i"
../../hide_keys.sh
cd ..
}
done
cd "${BINDIR}"
echo "Hiding keys in $BINDIR"
../hide_bin_keys.sh