1
0
Fork 0
mirror of synced 2024-07-04 05:51:10 -04:00
zimfw/tools/zim_clean_cache

10 lines
305 B
Plaintext
Raw Normal View History

2016-05-14 18:22:04 -04:00
#
# zim_clean_cache - removes all zcompiled files
#
find ${ZIM_HOME} \( -name '*.zwc' -or -name '*.zwc.old' \) -delete
rm -f ${ZDOTDIR:-${HOME}}/.zshrc.zwc{,.old}
rm -f ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}{,.zwc{,.old}}
2016-05-14 18:22:04 -04:00
print 'To rebuild the completion cache, please restart your terminal'