Wednesday 2 March 2016

bash - How can I send a file from Linux to email?

How can I send a zip file (~600MB) to an email account?
What is the command line should be used in bash?



What if I want to FTP the files to a server automatically?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...