GNU/Linux >> Linux の 問題 >  >> Linux

Linux で mail コマンドを使用してファイルを添付するには?

uuencode の使用例:

uuencode surfing.jpeg surfing.jpeg | mail [email protected]

および参照記事:

http://www.shelldorado.com/articles/mailattachments.html

注:

あなたは apt install sharutils することができます uuencode を持つ コマンド


$ echo | mutt -a syslogs.tar.gz [email protected]

ただし、mail (または mailx) ではなく、mutt を使用します。


mailx も役立つかもしれません。 mailx の man ページから:

-a file
     Attach the given file to the message.

とても簡単ですよね?


mail 私が試した最新の Linux のすべてのバージョンで実行できます。他のソフトウェアは不要:

[email protected]:~$ mail -a doc.jpg [email protected]
Subject: testing

This is a test
EOT

入力が終わったら ctrl+d。


Linux
  1. コマンドラインを使用してLinuxを再起動する方法

  2. コマンドを使用してLinuxでプロセスを強制終了する方法は?

  3. Linux で「split」コマンドを使用して iso またはファイルを分割する方法

  1. Linuxでコマンド出力をファイルに保存する方法

  2. コマンドラインを使用してLinuxでtar.gzファイルを抽出する方法

  3. Cksum コマンドを使用して Linux で CRC チェックサムを計算する方法

  1. Linuxファイルコマンド:Linuxでファイルタイプを決定する方法

  2. ターミナル/コマンドラインを使用してLinuxでファイルを作成する方法

  3. 「dd」コマンドを使用して Linux でスパース ファイルを作成する方法