blob: 3be1f0d44bee6f9138a2083c162c6ef3e6b0f8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
for dir in \
/Applications \
/Library/Ringtones \
/Library/Wallpaper \
/System/Library/Fonts \
/System/Library/TextInput \
/usr/share
do
. /usr/libexec/cydia/move.sh "$@" "${dir}"
done
|