9 lines
213 B
Bash
9 lines
213 B
Bash
|
#!/bin/sh
|
||
|
cp articles.db old_articles.db
|
||
|
sqlite3 articles.db 'UPDATE articles SET text = "***";'
|
||
|
sqlite3 articles.db 'VACUUM;'
|
||
|
echo -n "Press enter when done..."
|
||
|
read
|
||
|
rm articles.db
|
||
|
mv old_articles.db articles.db
|