forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into ssh-add
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ | |
- Send a message with the content of message.txt to the mail folder of local user `user_name`: | ||
|
||
`sendmail user_name < message.txt` | ||
`sendmail {{user_name}} < {{message.txt}}` | ||
|
||
- Send an email from [email protected] (assuming your local mail server is configured for this) to [email protected] containing the message in `message.txt`: | ||
- Send an email from [email protected] (assuming the mail server is configured for this) to [email protected] containing the message in `message.txt`: | ||
|
||
`sendmail -f test@gmail.com you@yourdomain.com < message.txt` | ||
`sendmail -f {{you@yourdomain.com}} {{test@gmail.com}} < {{message.txt}}` | ||
|
||
- Send an email from [email protected] (assuming your local mail server is configured for this) to [email protected] containing the file `file.zip`: | ||
- Send an email from [email protected] (assuming the mail server is configured for this) to [email protected] containing the file `file.zip`: | ||
|
||
`sendmail -f test@gmail.com you@yourdomain.com < file.zip` | ||
`sendmail -f {{you@yourdomain.com}} {{test@gmail.com}} < {{file.zip}}` |