博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
编写第一个Shell脚本【TLCL】
阅读量:5901 次
发布时间:2019-06-19

本文共 516 字,大约阅读时间需要 1 分钟。

  • 怎样编写一个 Shell 脚本

  1. 编写一个脚本
  2. 使脚本文件可执行
  3. 把脚本放到Shell能够找到的地方
  • 脚本文件格式

#!/bin/bash# This is our first script.echo 'Hello World!'

#!字符序列是一种特殊的结构叫做 shebang。

这个 shebang 被用来告诉操作系统将执行此脚本所用的解释器的名字。

每个 shell 脚本都应该把这一文本行 作为它的第一行。

  • 可执行权限

chmod +x helloworld

 

  • 修改PATH

export PATH=~/bin:"$PATH"

 

保存到.bashrc

. .bashrc

 

~/bin          个人所用脚本

/usr/local/bin        系统中的每个用户都可以使用

/usr/local/sbin      系统管理员使用的脚本

  • 更多格式技巧

  1. 长选项名称
  2. 缩进和行继续符

 

脚本和 命令行的一个区别是:

脚本可能采用 tab 字符拉实现缩进。

命令行却不能,因为 tab 字符被用来 激活自动补全功能。

 

转载于:https://www.cnblogs.com/songdechiu/p/9986786.html

你可能感兴趣的文章
Apache2.4.33安装无systemctl/service status/state显示
查看>>
Docker的系统资源限制及验证
查看>>
c++ ios_base register_callback方法使用
查看>>
Java中为什么需要Object类,Object类为什么是所有类的父类
查看>>
angularjs-paste-upload
查看>>
linux基础命令 head
查看>>
objective c:import和include的区别, ""和<>区别
查看>>
The Shared folder with you
查看>>
poj 2234 Matches Game
查看>>
sax方式解析XML学习笔记
查看>>
Springboot配置(上)
查看>>
java--Eclipse for mac 代码提示(代码助手,代码联想)快捷键修改
查看>>
Jdom的简单操作
查看>>
left join on/right join on/inner join on/full join on连接
查看>>
Codeforces 582B Once Again
查看>>
template.helper 多参数
查看>>
RadioButton布局图片+文字 实现tabhost效果
查看>>
access中设置不等于
查看>>
hdu 1221 Rectangle and Circle
查看>>
Android 四大组件之四(ContentProvider)
查看>>