Tail multiple log files in one terminal Categorías: Código Linux Etiquetas: Linux bash Code shell Script to save as "multitail.sh' or whatever you like. Save it in "/home/username/scripts" or any other folder $ vi multi-tail.sh #!/bin/sh # When this exits, exit all back ground process also. Leer más sobre Tail multiple log files in one terminal
Mysqldump examples Categorías: Código Etiquetas: MySQL mysqldump examples shell Dump structure only, without data mysqldump -d -h localhost -u root -pmypassword databasename > dump_file.sql *Note: "-d" option is the only difference between this command and the typical mysqldump with all data Leer más sobre Mysqldump examples
Subversion basic shell commands Categorías: Código Linux Trucos Etiquetas: Subversion Linux shell examples Import new project: $ svn import -m "Initial" project_folder https://domain.com/svn/project_folder Checkout project with .svn files Leer más sobre Subversion basic shell commands
Linux SSH login without passwords Categorías: Código Software Linux Etiquetas: Linux ssh command shell tutorial Step 1:Create public and private keys using ssh-key-gen on local machine user@localhost$ ssh-keygen Generating public/private rsa key pair. Leer más sobre Linux SSH login without passwords