博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Shell编程中的变量【转载】
阅读量:6192 次
发布时间:2019-06-21

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

  hot3.png

Linux Variables

When variables are used they are referred to with the $ symbol in front of them. There are several useful variables available in the shell program. Here are a few:

  • $$ = The PID number of the process executing the shell.
  • $? = Exit status variable.
  • $0 = The name of the command you used to call a program.
  • $1 = The first argument on the command line.
  • $2 = The second argument on the command line.
  • $n = The nth argument on the command line.
  • $* = All the arguments on the command line.
  • $# The number of command line arguments.

The "shift" command can be used to shift command line arguments to the left, ie $1 becomes the value of $2, $3 shifts into $2, etc. The command, "shift 2" will shift 2 places meaning the new value of $1 will be the old value of $3 and so forth.

转载于:https://my.oschina.net/pooz/blog/103490

你可能感兴趣的文章
《嵌入式系统数字视频处理权威指南》—— 导读
查看>>
侵犯公民个人信息: “两高”首次出台司法解释 打击大数据征信乱象
查看>>
《Photoshop修色圣典(第5版)》—第1章1.13节你将是裁判
查看>>
《大数据算法》一2.4 数组有序的判定算法
查看>>
JQuery入门(1)
查看>>
《OpenACC并行编程实战》—— 3.2 导语格式
查看>>
Linux有问必答:nginx网络服务器上如何阻止特定用户代理(UA)
查看>>
Nginx+Keepalived实现站点高可用
查看>>
《jQuery、jQuery UI及jQuery Mobile技巧与示例》——9.12 技巧:跨页面时固定footer...
查看>>
如何使用Monit部署服务器监控系统
查看>>
未来富豪,将出自这12大颠覆性领域
查看>>
《Axure RP8 网站和APP原型制作 从入门到精通》一2.4 权衡并制定功能的优先级...
查看>>
《软件功能测试自动化实战教程》—第6章6.1节什么时候使用数据驱动测试方法...
查看>>
关于 Linux 进程你所需要知道的一切
查看>>
C#创建https请求并使用pfx证书
查看>>
linux内核移植X86平台的例子
查看>>
Shiro安全框架入门篇(登录验证实例详解与源码)
查看>>
ECS Linux 服务器公钥秘钥SSH登录
查看>>
AFNetworking 使用总结 (用法+JSON解析)
查看>>
win8 开发之旅(7) --五子棋游戏开发
查看>>