美文网首页
shell脚本入门

shell脚本入门

作者: 九月_1012 | 来源:发表于2019-04-04 16:01 被阅读0次

7 shell while 读文件

写法1
#!/bin/bash
while read line
do
    echo $line
done < file(待读取的文件)
--------------------------------------------------
写法二:
cat file(待读取的文件) | while read line
do
    echo $line
done
-----------------------------------------------------
写法三:
for line in `cat file(待读取的文件)`
do
    echo $line
done
-----------------------------------------------------
简写:
$ cat file | while read line; do echo $line; done
$ for line in $(<file); do echo $line; done
=== 实践 === 
#! bin/sh
 
#$str='http://images.stylight.de/static/res200/s2870/2870657.1.jpg%0D'
while read line
do
   wget -p ${line:0:59}
done <‘XXX’;
#6 if else
if [ expression ]
then
   XXX
else
   XXX
fi
#5 shell写log
cat >run.sh
exec >XXX.run.log 2>&1
echo Start time:
date


#4 rename“--”
for file in $(find ./ -name "*");do mv $file $(echo "$file"|sed 's/\-\-P5//');done

#0 查看centos系统版本号
cat /etc/redhat-release
#1 读取脚本的绝对路径目录
g_progdir_abs=$(dirname "$(readlink -f "$0")");

#2 提示参数
if [ $# -lt 1 ]; then
    echo "Usage: sh  <ref> <bam> <sample> <output>"
    exit
fi

# 3 写function
name(){
    echo “${g_prog:=$0}: Error! ""$@" 1>&2;
    exit 1;
}

linux中shell变量#,@,0,1,2的含义解释: 变量说明: $$ Shell本身的PID(ProcessID)*
所有参数列表。如"*"用「"」括起来的情况、以"1 2 …n"的形式输出所有参数。
@ 所有参数列表。如"@"用「"」括起来的情况、以"1" "2" … "n" 的形式输出所有参数。#
添加到Shell的参数个数

# 3 判断空字符串
  if [[ ! -z "${SMRT_IGNORE_CUSTOM_PIPELINES:-}" ]] ; then   -z 空字符串返回为真

# 4 改~家目录环境变量
export HOME=/data/username

相关文章

  • Shell入门笔记

    Shell脚本:Linux Shell脚本学习指南菜鸟教程 - Shell教程Linux入门 - Shell脚本是...

  • shell脚本

    shell入门 脚本格式入门 脚本以!/bin/bash开头,指定解析器 第一个shell脚本 需求 创建shel...

  • Shell 概述

    学习 Shell 主要包括的内容: Shell 脚本入门 Shell 变量 Shell 内置命令 Shell 运算...

  • shell入门学习(1)——语法基础

    本文为转载,原文:shell入门学习(1)——语法基础 介绍 Shell Script,Shell脚本与Windo...

  • 自动化脚本实践(Shell + Expect)

    Linux Shell脚本入门: Linux awk 命令 | 菜鸟教程 Shell 教程 | 菜鸟教程 lin...

  • Shell脚本编程30分钟入门

    Shell脚本编程30分钟入门 什么是Shell脚本 示例 看个例子吧: 示例解释 第1行:指定脚本解释器,这里是...

  • Lesson-42 Shell(非原创,搬运自 Github)

    Shell脚本编程30分钟入门 什么是Shell脚本 示例 看个例子吧: 示例解释 第1行:指定脚本解释器,这里是...

  • 2019-09-19

    Shell 概述 Shell 解析器 查看系统shell解析器 默认解析器为bash Shell 脚本入门 新建h...

  • Shell脚本编程30分钟入门

    作者:qinjx原文地址:Shell脚本编程30分钟入门 什么是Shell脚本 示例 看个例子吧: 示例解释 第1...

  • Bash shell

    Shell脚本编程30分钟入门 1. $开头shell变量的含义: $1, $2, $3, ... are the...

网友评论

      本文标题:shell脚本入门

      本文链接:https://www.haomeiwen.com/subject/jkhqiqtx.html