You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
213 B
10 lines
213 B
10 years ago
|
#!/bin/sh
|
||
8 years ago
|
# clean.sh - clean everything.
|
||
|
set -e -u
|
||
10 years ago
|
|
||
9 years ago
|
# Read settings from .termuxrc if existing
|
||
|
test -f $HOME/.termuxrc && . $HOME/.termuxrc
|
||
|
: ${TERMUX_TOPDIR:="$HOME/.termux-build"}
|
||
|
|
||
|
rm -Rf /data/* $TERMUX_TOPDIR
|