时间: 2024-10-28 10:54:44
shell 1到100加法
shell 1到100加法的相关文章
用shell写个100以内的所有数字之和
#!/bin/bash i=2 while ((i<=100));do j=2 while ((j<=i/2));do if ((i%j==0));then break fi let j++ done if ((j>i/2));then echo $i fi let i++ done
shell脚本,100以内的质数有哪些?
[[email protected] wyb]# cat 9zhishu.sh #!/bin/bash for i in `seq 100` do for((j=2;j<=i-1;j++)) do [ $((i%j)) -eq 0 ] && break done [ $j -eq $i ] && echo $i done [[email protected] wyb]# bash 9zhishu.sh 2 3 5 7 11 13 17 19 23 29 31 37 4
shell 编程每日100行
[email protected] ~/tscripts $ echo "hello world !" -bash: !": event not found [email protected] ~/tscripts $ echo 'hello world !' hello world ! [email protected] ~/tscripts $ echo 'hello world !' >> t1.sh [email protected] ~/tscripts
使用shell脚本实现加法乘法运算
编写一个shell脚本,实现加法和乘法运算. #!/bin/bash #Function:num1+num2 num3*num4 sum(){read -p "please key in first number:" num1read -p "please key in second number:" num2let num3=${num1}+${num2}echo -e "\033[32m $num1 + $num2 = $num3 \033[0m&qu
Bash Shell 小试牛刀
一.终端打印 [[email protected] ~]# echo welcome to bash! welcome to bash! [[email protected] ~]$ echo 'welcome to bash!' welcome to bash! [[email protected] ~]$ echo "welcome to bash\!" welcome to bash\! (注意,双引号内不能直接用特殊符号,需要用转义符\) [[email protected]
shell之()、{}
1 一串命令的执行 [[email protected] log]# (a=2;echo $a) 2 [[email protected] log]# { a=2;echo $a;} #注意格式的不同,左边有空格,最右边以分号结尾 2 2 ()和{}中括号里面的某个命令的重定向只影响该命令,但括号外的重定向则影响到括号里的所有命令 [[email protected] log]# { a=10;b=100;echo $a>c;echo $b;} 100 [[email protected]
【转】Shell编程
原文链接: Shell编程 打算有时间简单了解shell编程 1.shell结构 一个简单的例子: [[email protected] shell]# vi example #!/bin/sh #This is show what a example looks like. echo "my first shell example." echo # this inserts an empty line in output. echo "We are current in
Linux Shell 创建序列数组
关于linux数组定义,以及生成方法,请看:linux shell 动态生成 数组系列 seq使用技巧 .这里我主要说的是高效生成list 字符串,还有数组方法. 一.seq方法生成: 1 2 3 [[email protected] shell]$ aNumList=$(seq 100); [[email protected] shell]$ echo $aNumList 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2
漫谈shell脚本
一. 关于shell shell,英文是壳,外壳的意思,至于在计算机中,同样有这样的一层意思,也就是可以将shell看做是计算机系统封装的一层外壳,来供用户使用,因此,用户可以通过操纵shell也就是输入一系列命令来达到各种需要的目的,那么shell也可以被称为命令解释器. 在shell下,用户可以键入一行命令而shell解释一行来使其依次执行不同的任务,这种方式称为交互式,如果在执行命令比较少的情况下交互式还是方便的,而且还使这些命令透明,用户能够分辨出因果关系: 但是如果想要执行的命令是成批