#!/bin/sh
# POSIX_REF: 2.1 Shell Introduction
# DESCRIPTION: Sequential command execution in a script file
# EXPECT_OUTPUT<<END
# line1
# line2
# END
echo line1
echo line2
