#
#第一个shell脚本用 vi/vim编辑一个test.sh文件写入 命令:#!/bin/bash 使用了哪个脚本echo "Hello World !" 执行时候:1 作为可执行程序chmod +x ./test.sh #使脚本具有执行权限./test.sh #执行脚本2 作为解释器参数/bin/sh test.sh/bin/php test.php
本文共 243 字,大约阅读时间需要 1 分钟。
#
#第一个shell脚本用 vi/vim编辑一个test.sh文件写入 命令:#!/bin/bash 使用了哪个脚本echo "Hello World !" 执行时候:1 作为可执行程序chmod +x ./test.sh #使脚本具有执行权限./test.sh #执行脚本2 作为解释器参数/bin/sh test.sh/bin/php test.php
转载于:https://www.cnblogs.com/zhangchen-sx/p/11295012.html