博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shell脚本变量的参数
阅读量:6826 次
发布时间:2019-06-26

本文共 649 字,大约阅读时间需要 2 分钟。

mkdir folder && cd $_    (创建一个目录,并且立马切换到这个目录里面去。)

 

  • $1$2$3, ... are the .
  • "$@" is an array-like construct of all positional parameters, {$1, $2, $3 ...}.
  • "$*" is the IFS expansion of all positional parameters, $1 $2 $3 ....
  • $# is the number of positional parameters.
  • $- current options set for the shell.
  • $$ pid of the current shell (not subshell).
  • $_ most recent parameter (or the abs path of the command to start the current shell immediately after startup).
  • $IFS is the (input) field separator.
  • $? is the most recent foreground pipeline exit status.
  • $! is the PID of the most recent background command.
  • $0 is the name of the shell or shell script.

转载地址:http://lfykl.baihongyu.com/

你可能感兴趣的文章
vue系列之双向绑定&vDom总结
查看>>
引用变量
查看>>
学习笔记PHP02、PHP的下载与安装
查看>>
vue项目中获取外部js,并使用其中方法
查看>>
使用 canvas 绘图
查看>>
Express 文档(Express生成器)
查看>>
【C++】 41_类型转换函数 (上)
查看>>
SEER见证人操作指南
查看>>
函数式编程中的组合子
查看>>
linux-node开发的部署方式--PM2
查看>>
JavaScript面向对象OOM 2(JavaScript 创建对象的工厂模式和构造函数模式)
查看>>
【ES6入门10】:Proxy和Reflect
查看>>
angular前后端分离部署
查看>>
Anaconda:安装或更新 Python 第三方包
查看>>
Java中线程的5种状态
查看>>
Node.js 指南(阻塞与非阻塞概述)
查看>>
Java 常用 API 学习
查看>>
微信小程序填坑清单
查看>>
递归问题(邓公数据结构1.4节笔记)
查看>>
“山竹”影响出来的多应用单点登录
查看>>