Shell基础知识

Posted Python学习笔记大全

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell基础知识相关的知识,希望对你有一定的参考价值。

1.Shell简介:

  自动化运维常用的脚本--shell脚本和其他开发语言的脚本

  Shell功能定位: 在计算机学科中, Shell就是一个命令解释器

  Shell分类: 图形界面shell, 命令行式shell

Shell脚本示例:

① 编写脚本itcast.sh
#! /bin/bash
# 这是一个shell脚本文件
echo nihao
echo itcast

② 执行脚本
/bin/bash itcast.sh

 

2.简单实践

执行操作

shell脚本的执行通常可以采用以下几种方式:

常用:   /bin/bash /path/to/script-name 

bash /path/to/script-name 或 /bin/bash /path/to/script-name (强烈推荐使用)
/path/to/script-name 或 ./script-name (当前路径下执行脚本)
source script-name 或 . script-name (注意“.“点号)

 

 

 

以上是关于Shell基础知识的主要内容,如果未能解决你的问题,请参考以下文章

20155201 李卓雯 《网络对抗技术》实验一 逆向及Bof基础

Linux bash基础特性二

逆向及Bof基础实践

20155307刘浩《网络对抗》逆向及Bof基础

20155311高梓云《网络对抗》逆向及Bof基础

20145301赵嘉鑫《网络对抗》逆向及Bof基础