13 lines
163 B
Bash
Executable File
13 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# close couchdb background process
|
|
couchdb -d
|
|
|
|
# delete data and logs
|
|
cd $(dirname $0)
|
|
|
|
cat couch/{couch,stdout,stderr}.log
|
|
|
|
rm -rf couch
|
|
rm -rf data
|