mirror of https://gitlab.com/bashrc2/epicyon
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
rm accounts/news@*/outbox/*
|
|
rm accounts/news@*/postcache/*
|
|
rm accounts/news@*/outbox.index
|
|
if [ -f accounts/.newswirestate.json ]; then
|
|
rm accounts/.newswirestate.json
|
|
fi
|
|
if [ -f accounts/.currentnewswire.json ]; then
|
|
rm accounts/.currentnewswire.json
|
|
fi
|