用Vim编辑器创建脚本完成以下功能:使用脚本读取三个参数并将这些参数分别分配给变量ONE、TWO,THREE,最后以下面格式输出信息: There are X parameters that include Y. The first is A, the second is B, the third is C. 其中,使用参数数量替换X,使用所有输入的参数替换Y。然后分别使用变量ONE、TWO、THREE的内容替换A、B、C(提示:使用特殊shell位置参数)。 有如下要求:加入注释,注释内容为姓名++程序编写命令行获取的日期和时间(如: 2020年 03月 08日 星期日 11:18:16 CST ),完成后将程序的执行结果以截图上传。 (示例:若脚本名称为a.sh ,则运行 a.sh 1 2 3, 则输出为: There are 3 parameters that include 1 2 3. The first is 1, the second is 2, the third is 3. )