linux 创建shell脚本并执行的方式:
1.创建shell脚本touch,文件名或后缀都随意
touch hello.sh
2.编辑脚本
vim hello.sh
键入i
插入#!/bin/sh
echo hello world;
键入:
esc
:
wq
3.shell脚本授权
chmod 700 hello.sh
4.执行脚本
./hello.sh
相关文章
linux iptables防火墙设置命令linux使用ant脚本自动打包部署svn中的代码linux解压tar.xzvirtual box linux centos 7 配置网络访问物理主机和访问外网linux 创建shell脚本并执行linux shell脚本 远程批量复制文件到各节点linux shell for循环 案例linux shell脚本sh和bash的区别linux和windows运行scala脚本代码linux aumix命令linux chmod命令linux cu命令php 程序执行函数 把字符串转码为可以在 shell 命令里使用的参数php 程序执行函数 shell 元字符转义php 杂项 函数 设置客户端断开连接时是否中断脚本的执行php pcntl 函数 在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和子进程 都从fork的位置开始向下继续执行,不同的是父进程执行过程中,得到的fork返回值为子进程 号,而子进程得到的是0。php php 选项/信息 函数 设置脚本最大执行时间php 程序执行函数 通过 shell 环境执行命令,并且将完整的输出以字符串的方式返回。解决java使用Runtime.exec执行linux命令失败
关注编程学问公众号