diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-07-20 05:09:31 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:11 +0000 |
commit | d4b6208d03a2b0521c9770ed931115bc88db1eb6 (patch) | |
tree | e9c2b477d6671c8cf1213a2851c2aeea8b47b95e /Library/space.sh | |
parent | 1ef3da8cf14a6f67b04a4c38b76fd59010d11700 (diff) |
Dealing with disk space issues.
Diffstat (limited to 'Library/space.sh')
-rwxr-xr-x | Library/space.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/space.sh b/Library/space.sh new file mode 100755 index 0000000..953ae57 --- /dev/null +++ b/Library/space.sh @@ -0,0 +1,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 -v "${dir}" +done |