Posts by anderson • 103 points
4 posts
-
0
votes1
answer209
viewsA: How to rollback a specific table
you can use a text processing tool to create new file with only desired table example sed: $ sed -n -e '/CREATE TABLE.*`nome_tabela`/,/UNLOCK TABLES/p' backup.dump > backup_tabela.dump or sed -n…
-
3
votes1
answer2077
viewsA: Sending file to server via FTP via linux command line
first check if you have the FTP client installed on the machine that will run cron: apt-get install ftp -y # if the distribution is based on debian you can create scrip will run by cron: #!/bin/bash…
-
1
votes1
answer142
viewsA: Doubt to add values with for in Javascript
The declaration of the variable value should not be inside fo loopr, you must use operator += to which result of each operation parseFloat(Document.getElementById("preco"+i+""). value, 10); Is…
-
1
votes1
answer288
viewsA: Input text with jQuery
What is happening that you associated the function onTarefaItemClick to the "click" tag event <div class="tarefa-item">, then how much you click on the box <input type="text"…