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.
14 lines
265 B
14 lines
265 B
#!/bin/bash
|
|
|
|
# Clear Username and Password
|
|
sed -i '1,2s/{\(.*\)} {\(.*\)}\;$/{\1} {}\;/' config.tin
|
|
echo "Clearing credentials..."
|
|
|
|
# Empty logs and history
|
|
for f in logs/*.log
|
|
do
|
|
rm $f
|
|
touch $f
|
|
echo "Clearing $f..."
|
|
done
|
|
echo "Done - ready to commit."
|