Shell | Hello World

简介: Shell | Hello World

输出语句


使用 chmod 命令给文件hello.sh 添加可执行权限 x

[root@VM-0-9-centos data]# echo "hello world"
hello world
[root@VM-0-9-centos data]# vi hello.sh
[root@VM-0-9-centos data]# ls
C_language  hello.js  hello.sh  server.js
[root@VM-0-9-centos data]# ./hello.sh
-bash: ./hello.sh: 权限不够
[root@VM-0-9-centos data]# ll
总用量 16
drwxr-xr-x 2 root root 4096 12月 30 14:18 C_language
-rw-r--r-- 1 root root   29 12月 30 14:38 hello.js
-rw-r--r-- 1 root root   19 12月 30 15:30 hello.sh
-rw-r--r-- 1 root root  410 12月 30 14:42 server.js
# 使用 chmod 给文件hello.sh 添加可执行权限 x 
[root@VM-0-9-centos data]# chmod +x ./hello.sh
[root@VM-0-9-centos data]# ll
总用量 16
drwxr-xr-x 2 root root 4096 12月 30 14:18 C_language
-rw-r--r-- 1 root root   29 12月 30 14:38 hello.js
-rwxr-xr-x 1 root root   19 12月 30 15:30 hello.sh
-rw-r--r-- 1 root root  410 12月 30 14:42 server.js
[root@VM-0-9-centos data]# ./hello.sh
hello world

变量

[root@VM-0-9-centos data]# vi var.sh
[root@VM-0-9-centos data]# ll
总用量 20
drwxr-xr-x 2 root root 4096 12月 30 14:18 C_language
-rw-r--r-- 1 root root   29 12月 30 14:38 hello.js
-rwxr-xr-x 1 root root   19 12月 30 15:30 hello.sh
-rw-r--r-- 1 root root  410 12月 30 14:42 server.js
-rw-r--r-- 1 root root   33 12月 30 15:37 var.sh
[root@VM-0-9-centos data]# chmod +x ./var.sh 
[root@VM-0-9-centos data]# ./var.sh 
Hello World!!!
[root@VM-0-9-centos data]# cat var.sh 
var="Hello World!!!"
echo ${var}
[root@VM-0-9-centos data]# 

数组

[root@VM-0-9-centos data]# ./arr.sh 
hello
world
shell
---------
hello world shell
3
5
[root@VM-0-9-centos data]# cat arr.sh 
# 定义数组,以空格间隔
arr=("hello" "world" "shell")
echo ${arr[0]}
echo ${arr[1]}
# 获取数组某个特定元素
echo ${arr[2]}
echo "---------"
# 获取数组全部元素
echo ${arr[@]}
# 获取数组长度
echo ${#arr[@]}
# 获取数组单个元素长度
echo ${#arr[0]}
相关文章
|
运维 Java Shell
Shell学习(一):Hello World
Java程序员为什么要学习Shell呢? 1)需要看懂运维人员编写的Shell程序。 2)偶尔会编写一些简单Shell程序来管理集群、提高开发效率。
169 0
Shell学习(一):Hello World
|
Shell Linux 开发工具
shell 之hello world
shell 之hello world
137 0
|
20天前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
58 1
|
6天前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
22 2
6种方法打造出色的Shell脚本
|
11天前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
36 6
|
7天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
1月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
60 12
|
1月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
37 2
|
2月前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别