/ Published in: Bash
URL: http://www.modserv.com.eg
A bash command to empty a database table.
Expand |
Embed | Plain Text
#!/bin/bash mysql -D $DATABASE -e 'TRUNCATE TABLENAME;'
You need to login to post a comment.
ModServ on 01/23/12
database table Shell Bash empty
1 person have marked this snippet as a favorite
URL: http://www.modserv.com.eg
A bash command to empty a database table.
#!/bin/bash mysql -D $DATABASE -e 'TRUNCATE TABLENAME;'
You need to login to post a comment.