找回密码
 注册
搜索
查看: 1978|回复: 14

Linux_Shell脚本的编写

[复制链接]
发表于 2012-7-28 09:58:22 | 显示全部楼层 |阅读模式
Linux_Shell脚本编写,希望对大家有帮助
【文件名】:12728@52RD_Linux_Shell.doc
【格 式】:doc
【大 小】:154K
【简 介】:
【目 录】:




第一章:shell基础
●umask   --查看当前用户创建文件或文件夹时的默认权限
eg:
[test@szbirdora 1]$umask
0002
[test@szbirdora 1]$ls -lh
-rw-rw-r--     test test   myfile   
drwxrwxr-x     test test 1
上面的例子中我们看到由test默认创建的文件myfile和文件夹1的权限分别为664,775.而通过umask查到的默认权限为002.所以可以推断出umask的计算算法为:
umask                  file                      directory
0                           6                            7
1                           5                             6
2                           4                            5
3                           3                            4
4                            2                            3
5      1           2
6       0           1 
7       0            0

●连接ln
硬连接 ln sourcefile targetfile                  连接后的target文件大小和source文件一样
软连接 ln -s sourcefile targetfile              类似于windows的快捷方式

●shell script 基本结构
#!/bin/bash                          --------bash shell开头必须部分
# description                          --------注释部分(可有可无,为了阅读方便最好加以说明)
variable name=value             ---------变量部分,声明变量,赋值
control segment                    ---------流程控制结构,如判断、循环、顺序
eg.
helloworld.sh
#! /bin/bash
# This is a helloworld shell script
printchar = "hello world"
echo $printchar

[test@szbirdora 1]$sh helloworld.sh
hello world

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2012-7-30 13:31:02 | 显示全部楼层
学习学习
点评回复

使用道具 举报

发表于 2012-7-30 11:52:05 | 显示全部楼层
学习一下,感谢楼主~
点评回复

使用道具 举报

发表于 2012-7-29 19:35:16 | 显示全部楼层
好好学习一下,应该不错
点评回复

使用道具 举报

发表于 2012-8-11 09:56:41 | 显示全部楼层
谢谢  LZ
点评回复

使用道具 举报

发表于 2012-8-20 13:33:23 | 显示全部楼层
好东西啊。。谢谢分享!![em01]
点评回复

使用道具 举报

发表于 2012-9-4 11:09:46 | 显示全部楼层
LZ 哥们快没钱了啊。。。。
点评回复

使用道具 举报

发表于 2012-8-22 16:57:52 | 显示全部楼层
studying
点评回复

使用道具 举报

发表于 2012-10-6 10:31:19 | 显示全部楼层
[em05]顶个.
点评回复

使用道具 举报

发表于 2012-10-24 20:43:29 | 显示全部楼层
应该是不错的资料。看看。
点评回复

使用道具 举报

发表于 2012-10-24 14:29:58 | 显示全部楼层
这个可以买
点评回复

使用道具 举报

发表于 2012-11-15 21:22:00 | 显示全部楼层
哈哈 好东西要下
点评回复

使用道具 举报

发表于 2012-12-24 12:41:35 | 显示全部楼层
学习一下![em05]
点评回复

使用道具 举报

发表于 2013-3-11 20:07:38 | 显示全部楼层
Linux LCD 驱动分析,非常好的资料
本文来自:我爱研发网(52RD.com) - R&D大本营
详细出处:http://www.52rd.com/bbs/Detail_RD.BBS_240771_122_1_1.html
点评回复

使用道具 举报

发表于 2014-1-17 06:44:06 | 显示全部楼层
哈哈 好东西要顶啊!
点评回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|52RD我爱研发网 ( 沪ICP备2022007804号-2 )

GMT+8, 2024-11-23 00:30 , Processed in 0.065434 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表