Syncs files and/or directories from the first local path to the second remote path
On a Mac:
rsync -rav -e ssh --delete --progress /Users/Shortname/Desktop/filename.zip username@domainname.com:/home/username/public_html/filename.zip
Above code should all be on one line.
Copy a file securely from one path to another
On a Mac via the command line:
scp /Users/Shortname/Desktop/filename.zip username@domainname.com:public_html/filename.zip
Above code should all be on one line.
Get all customer email addresses in Magento
Using MySQL:
SELECT email FROM customer_entity;
This is helpful when you need to send an email to all of your customers.