• 2020暑假第3周


      这周主要学的是shell脚本,大致内容有:

      创建脚本:#mkdir shells

      基本语法:#!/bin/bash

                        echo"Hello World!"

      运行方式:#sh hello.sh

                 或:#chmod +x hello.sh

                         ./hello.sh或/绝对位置

      局部变量:# vim demo1.sh

                        #!/bin/bash

                        str="hello"

                        echo $str  或echo ${str} world

                        #sh demo1.sh

      环境变量:#env

                        #echo $HOME

                        创建环境变量:export MYENV=/root/lib/demo

                        生效:# sourse/etc/profile

      特殊字符:

                  

       例:#!/bin/bash

             echo"第一个参数为:$1";

             echo"参数个数为:$#";

             echo"传递的参数作为一个字符串显示:$*";

              #sh demo2.sh aaa bbb ccc

      运算符:a+b:

               

                  a×b:

                     echo 'expr $a * $b';

      if语句:

               

     for语句:

               

       函数:

                  

             

             

  • 相关阅读:
    Git 基础笔记整理1
    学习开源中国客户端
    IOS项目中的细节处理,如更改状态栏等等
    网络编程
    当FileWriter没有flush的时候,不写入文件
    批量移动文件
    批量重命名文件
    替换一个文件内的某个字符
    遍历map和删除map中的一个entry
    ArrayList的遍历-转载
  • 原文地址:https://www.cnblogs.com/fengjingfei/p/13572162.html
Copyright © 2020-2023  润新知