an example
$ echo "something" | mailx -s "subject" [email protected]
to send attachment
$ uuencode file file | mailx -s "subject" [email protected]
and to send attachment AND write the message body
$ (echo "something\n" ; uuencode file file) | mailx -s "subject" [email protected]
Related Posts:
- How to pretty print XML from the command line?
- What are file descriptors, explained in simple terms?
- How to kill a process running on particular port in Linux?
- Display exact matches only with grep
- How to split a delimited string into an array in awk?
- Display exact matches only with grep
- What does ^M character mean in Vim?
- What does it mean to write to stdout in C?
- What do ‘real’, ‘user’ and ‘sys’ mean in the output of time(1)?
- mkdir’s “-p” option
- wait(null) and wait(&status) C language and Status
- Shell script “for” loop syntax
- How to get the current directory in a C program?
- When could or should I use chmod g+s on a file or directory?
- How to Sum a column in AWK?
- Equivalent of *Nix ‘which’ command in PowerShell?
- What is the difference between SIGSTOP and SIGTSTP?
- How to colorize diff on the command line
- How to colorize diff on the command line
- How to read a file into a variable in shell?
- gpg decryption fails with no secret key error
- What is the difference between tar and zip?
- Display current path in terminal only
- What do the dup() and dup2() systems really do?
- What generates the “text file busy” message in Unix?
- Reasoning behind C sockets sockaddr and sockaddr_storage
- Rename multiple files based on pattern in Unix
- What is the difference between a symbolic link and a hard link?
- SCP Permission denied (publickey). on EC2 only when using -r flag on directories
- binary operator expected error when checking if a file with full pathname exists
- What is special about /dev/tty?
- How do I do ‘mount –bind’ in /etc/fstab?
- How to read backward from the end of file in less or more?
- Getting the last match in a file using grep
- How do I pause my shell script for a second before continuing?
- Are email addresses case sensitive?
- How to send an email with Python?
- What is newline character — ‘\n’
- Why does ENOENT mean “No such file or directory”?
- sudo: npm: command not found
- In the shell, what does ” 2>&1 ” mean?
- How can I validate an email address using a regular expression?
- How do I grep recursively?
- How can I send an email using PHP?
- How do I grep recursively?
- What is the meaning of *nix?
- How can I validate an email address using a regular expression?
- In the shell, what does ” 2>&1 ” mean?
- grep –ignore-case –only
- What are .a and .so files?
- How do I grep recursively?
- How can I check if a directory exists in a Bash shell script?
- OS X: equivalent of Linux’s wget
- Connect: Socket operation on non-socket
- Connect: Socket operation on non-socket
- How to validate an email address in PHP
- What is the difference between read and pread in unix?
- OS X: equivalent of Linux’s wget
- How do I use grep to search the current directory for all files having the a string “hello” yet display only .h and .cc files?
- SSH using python script
- How can I exclude directories from grep -R?
- How can I exclude directories from grep -R?
- Argument list too long error for rm, cp, mv commands
- SMTP connect() failed PHPmailer – PHP
- How to validate an email address in JavaScript
- Difference between using “chmod a+x” and “chmod 755”
- What is a bus error? Is it different from a segmentation fault?
- What does WEXITSTATUS(status) return?
- Who can access a file with octal permissions “000” on Linux/UNIX?
- Email validation using jQuery
- What does the line “#!/bin/sh” mean in a UNIX shell script?
- How to cat <
> a file containing code? - What is the difference between ports 465 and 587?
- Extract file basename without path and extension in bash
- Given two directory trees, how can I find out which files differ by content?
- Can I set subject/content of email using mailto:?
- Send email with PHP from html form on submit with the same script
- Which characters need to be escaped when using Bash?
- Diff command along with Grep gives “Binary file (standard input) matches”
- OSError – Errno 13 Permission denied
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- cp: missing destination file operand after
- What is a bus error? Is it different from a segmentation fault?
- What can cause a “Resource temporarily unavailable” on sock send() command
- How to download a file from server using SSH?
- What is the ASCII Code of ½?
- Get Unix timestamp with C++
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- How to send an email from JavaScript
- What is the difference between “#!/usr/bin/env bash” and “#!/usr/bin/bash”?
- Javamail Could not convert socket to TLS GMail
- How to send an email from JavaScript
- Is JavaScript supported in an email message?
- Email validation in Ruby on Rails?
- Python: What is the correct MIME type for attaching html file to email
- Proxy Error 502 : The proxy server received an invalid response from an upstream server
- Why should we check WIFEXITED after wait in order to kill child processes in Linux system call?
- What does `set -x` do?
- Command to change the default home directory of a user
- Is there any simple way to benchmark Python script?