#!/bin/bash MESSAGE="Line one. /n" MESSAGE="$MESSAGE Line two. /n" MESSAGE="$MESSAGE Line three." echo $MESSAGE | mail -s "test" "example@example.com"
这是我应该如何获得每条线,在它自己的线上?
bash
bash ×1