本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lyndon.lin
最新文章列表
Linux 技巧: Bash 参数和参数扩展
您是否有时想知道如何对脚本使用参数,以及如何将参数传递给内部函数或其他脚本?是否需要对参数或选项做一些简单的有效性测试?或者对参数字符串执行一些简单的析取和替换操作?本文将向您介绍参数的用法和 bash shell 中的各种参数扩展。
shell 快速变量处理
Bash Shell可以进行变量的条件替换,既只有某种条件发生时才进行替换,替换
条件放在{}中.
(1) ${value:-word}
当变量未定义或者值为空时,返回值为word的内容,否则返回变量的值.
(2) ${value:=word}
与前者类似,只是若变量未定义或者值为空时,在返回word的值的同时将
word赋值给value
(3) ${value:?message}
若变量以赋值 ...
Ubuntu自动运行程序(2)
1.编写shell脚本 gedit /etc/init.d/aa #!/bin/bash mplayer /home/aa.avi -fs -vo fbdev -vf scale=800:600 (fs全屏,vo进入桌面前使用, scale设置画面大小)2. chmod 755 /etc/init.d/aa 3. ubuntu默认启动级别为2加载的脚本在/etc/ ...
Keyboard Shortcuts for Bash
今天在网上闲逛,看到篇不错的文章, Keyboard Shortcuts for Bash 我摘录过来
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + L ...
shell script学习笔记一
#####the fist line should be the following#####
#!/bin/bash
#####return value#####
exit n
#####Usage of read command,读键盘的输入#####
read [-pt] variable
-p: 后面可以接提示信息
-t: 后面可以接等待的秒数,这样脚本不用一直等下去
例子:
r ...
yum 还是不如 apt 阿
今天搭建网站基本系统,时间紧迫,只好先在CentOS上搭建了。
以前没有怎么用过yum,只知道它是学习了apt的做法,把rpm纳入repository的管理了。
今天发现它的设计的不好:
bash 代码
...
glibc-kernheaders-0-2.4-8 100% |=========================| 25 kB 00:00
...