13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/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
|