Here are some sed commands to demonstrate its capabilities:
◦ sed 's/rain/snow/' easy_sed.txt; cat easy_sed.txt
◦ sed 's/plain/mountains/' easy_sed.txt; cat easy_sed.txt
◦ sed 's/Spain/France/' easy_sed.txt; cat easy_sed.txt
◦ sed 's/^The //' easy_sed.txt; cat easy_sed.txt
◦ sed '/Spain/d' easy_sed.txt; cat easy_sed.txt
This demonstrates sed's substitution and deletion capabilities using regular expressions to match patterns in the file.