10 lines
208 B
Bash
Executable File
10 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Clean time folders only
|
|
|
|
rm -rf *[1-9]*
|
|
rm -f log.* 2>/dev/null
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|