Tag Archives: command line
Linux Command Line Mass Email Script – C Shell
1. Create a file – we’ll use “email_list.txt” – that will contain email addresses, one on each line. 2. Create another file that will be our shell executable, we’ll call it “mass_mail.sh” 3. Use VI or your favorite text editor … Continue reading
Posted in Development
Tagged c, command line, linux, mass email, shell, shell scripting
Leave a comment
MySQL – How to use PASSWORD in the command line (as argument)
The following example shows how to execute a query via command line with a password. mysql –user=username –password=password dbname -e “SELECT * FROM table” –skip-column-names

