当前位置: 首页 > news >正文

从0开始学习shell脚本

了解Shell和Shell脚本

Shell:Shell是一个命令解释器,用来执行用户输入的命令。常用的Shell包括BashZshKsh等。Linux默认的Shell通常是Bash。

Shell脚本:Shell脚本是由一系列命令组成的文件,脚本可以运行一连串命令,达到自动化目的。

Shell脚本基础语法

创建并执行脚本
# 创建一个脚本文件
touch my_script.sh
chmod +x my_script.sh   # 赋予执行权限# 脚本文件内容
#!/bin/bash              # 指定脚本解释器为bash
echo "Hello, World!"     # 打印字符串# 执行脚本
./my_script.sh
变量和常用运算符
# 定义变量(等号两边不能有空格)
name="Shell Scripting"# 访问变量(前面需要加$)
echo "I am learning $name"# 数字运算(使用expr)
num1=5
num2=3
sum=$(expr $num1 + $num2)
echo "The sum is $sum"
条件判断
# 数值比较
if [ $num1 -gt $num2 ]; thenecho "$num1 is greater than $num2"
fi# 字符串比较
str1="hello"
str2="world"
if [ "$str1" != "$str2" ]; thenecho "$str1 is not equal to $str2"
fi
循环
# for 循环
for i in {1..5}; doecho "Loop $i"
done# while 循环
count=1
while [ $count -le 5 ]; doecho "Count is $count"count=$(expr $count + 1)
done

常用Shell命令

  • 文件和目录管理lscdmkdirrmmvcp
  • 文本处理catechogrepsedawk
  • 进程管理pstopkill
  • 文件权限chmodchown

Shell脚本中的进阶技术

函数
# 定义函数
my_function() {echo "Hello from function"
}# 调用函数
my_function
重定向和管道
# 将输出重定向到文件
echo "Hello" > output.txt  # 覆盖写入
echo "World" >> output.txt # 追加写入# 使用管道传递命令输出
cat file.txt | grep "text"

实践小项目

批量重命名文件
#!/bin/bash
# 把目录中的所有txt文件重命名为file_前缀
for file in *.txt; domv "$file" "file_$file"
done
监控磁盘使用情况
#!/bin/bash
# 检测根目录的磁盘使用情况
used=$(df / | grep / | awk '{ print $5 }' | sed 's/%//g')
if [ $used -gt 80 ]; thenecho "Warning: Disk usage is over 80%"
fi


http://www.mrgr.cn/news/62799.html

相关文章:

  • php解密,sg11解密-sg15解密 如何由sourceGuardian11-sourceGuardian15加密(sg11加密~sg15加密)的源码
  • c语言水仙花,超简单讲解
  • 视频智能分析平台LiteAIServer烟火识别软件智能视频分析的新里程碑
  • Swarm-LIO: Decentralized Swarm LiDAR-inertial Odometry论文翻译
  • 贪心算法入门(一)
  • solidworks学习6吊环-20241030
  • JS面试八股文(四)
  • windows环境下,使用docker搭建redis集群
  • java程序打包为一个exe程序
  • Python import package
  • [TypeError]: type ‘AbstractProvider‘ is not subscriptable
  • 深入理解Java中的static关键字
  • Ubuntu环境本地部署DbGate数据库管理工具并实现无公网IP远程访问
  • [GXYCTF2019]Ping Ping Ping 1
  • SQL中`ORDER BY`、`SORT BY`、`DISTRIBUTE BY`、`GROUP BY`、`CLUSTER BY`的区别详解
  • Spring JdbcTemplate详解
  • C/C++ 矩阵的QR分解
  • WPF中如何解决引入MvvmLight所导致的错误
  • MPU6050六轴传感器-角度滤波(DMP+互补滤波+卡尔曼滤波)
  • Mac上搜索文件最快最高效的方法
  • ruoyi-ui启动运行时,报错Error: error:0308010C:digital envelope routines::unsupported。
  • qt QCheckBox详解
  • qt QIcon详解
  • 206面试题(1~27)
  • 运用通义灵码有效管理遗留代码:提升代码质量与可维护性
  • 深入理解 Prometheus Metrics 存储类型及应用