shell脚本学习(四)

1、文件权限

1.1 用户有一个称为setuid(S)的特殊权限,它出现在执行权限(x)的位置,setuid权限允许用户以拥有者的权限来执行可执行文件,即使这个可执行文件是由

其他用户运行的。

具有setuid权限的文件的权限序列如下:

-rwS------

setuid的使用不是无限制的,为了确保安全,只能使用在linux ELF 格式二进制文件上,而不能用于脚本文件。

1.2 目录拥有一个特殊的权限,叫做粘滞位(sticky bit)。如果目录设置了粘滞位,只有创建该目录的用户才能删除目录中的文件,即使用户组和其他用户也有写权限,也无能为力。粘滞位出现在其他用户权限的执行权限位(x),使用 t 或 T 来表示。如果没哟设置执行权限,但设置了粘滞位,就用 t 表示,如果同时设置了执行权限和粘滞位,就是用 T 。

例如:

d------rwt

d------rwT

设置目录粘滞位的一个典型例子就是/tmp

l例如:

drwxrwxrwt  17 root root    12288 12月 28 18:40 tmp

1.3 设置不可修改的文件

chattr +i filname

1.4 打印出当前目录下的符合链接

ls -l | grep "^l"             解释: ^ 是字符串的起始标记

readlink 打印出符合链接指向的目标路径

例如:

[email protected]:/etc/rc.d# readlink S11sysctl
../init.d/sysctl

1.5 打印文件类型

file  filename

例如:

[email protected]:~/tarfiles$ file qsdk-qca-shortcut-fe-2.7.029.tar.bz2
qsdk-qca-shortcut-fe-2.7.029.tar.bz2: bzip2 compressed data, block size = 900k

[email protected]:~/dl$ file b.txt
b.txt: ASCII text
[email protected]:~/dl$ file base.sh
base.sh: Bourne-Again shell script, UTF-8 Unicode text executable

[email protected]:~/dl$ file *
111:               setgid, directory
aaa:               symbolic link to a.txt
add.sh:            Bourne-Again shell script, ASCII text executable
apple.sh:          Bourne-Again shell script, ASCII text executable
array.sh:          Bourne-Again shell script, ASCII text executable
a.txt:             ASCII text
base.sh:           Bourne-Again shell script, UTF-8 Unicode text executable
bc.sh:             POSIX shell script, ASCII text executable
b.txt:             ASCII text
cecho.sh:          ASCII text
checkword.sh:      ASCII text
c.txt:             ASCII text
duplicate_files:   empty
duplicate_samples: empty
filestat.sh:       UTF-8 Unicode text
getoopt.c:         C source, ASCII text
interactive.sh:    UTF-8 Unicode text
isroot.sh:         POSIX shell script, ASCII text executable
junk.data:         data
log.sh:            Bourne-Again shell script, ASCII text executable
makemore.sh:       ASCII text
printf.sh:         POSIX shell script, UTF-8 Unicode text executable
remove_dup.sh:     ASCII text
rename.sh:         UTF-8 Unicode text
rmmore.sh:         ASCII text
sleep.sh:          Bourne-Again shell script, ASCII text executable
test:              directory
test.sh:           ASCII text

1.6 查找文件差异并进行修补

命令 :  diff

非一体化(nonunified)形式的diff输出(不适用-u选项)如下:

[email protected]:~/dl$ diff version1.txt version2.txt
2,3c2
< line2
< line3
---
> lin2
5a5
> GNU is not UNIX

一体化形式的输出如下:

[email protected]:~/dl$ diff -u version1.txt version2.txt
--- version1.txt        2015-12-28 19:16:28.866869790 +0800
+++ version2.txt        2015-12-28 19:17:12.078872041 +0800
@@ -1,5 +1,5 @@
 this is the original text
-line2
-line3
+lin2
 line4
 happy hacking !
+GNU is not UNIX

可以重定向从而生成patch文件:

[email protected]:~/dl$ diff -u version1.txt version2.txt  > version.patch
[email protected]:~/dl$ cat version.patch
--- version1.txt        2015-12-28 19:16:28.866869790 +0800
+++ version2.txt        2015-12-28 19:17:12.078872041 +0800
@@ -1,5 +1,5 @@
 this is the original text
-line2
-line3
+lin2
 line4
 happy hacking !
+GNU is not UNIX

用下列命令来进行修补:

[email protected]:~/dl$ patch -p1 version1.txt  < version.patch
patching file version1.txt

[email protected]:~/dl$ cat version1.txt
this is the original text
lin2
line4
happy hacking !
GNU is not UNIX
[email protected]:~/dl$
[email protected]:~/dl$ diff -u version1.txt  version2.txt
[email protected]:~/dl$

再重新输入一次这个命令 patch -p1 version1.txt < version.patch,就可以将补丁文件去掉

时间: 2024-12-13 18:41:31

shell脚本学习(四)的相关文章

shell脚本学习指南

以下八点不敢说就能成为你shell脚本学习指南de全部,至少可以让你编写出可靠的shell脚本. 1. 指定bash shell 脚本的第一行,#!之后应该是什么? 如果拿这个问题去问别人,不同的人的回答可能各不相同.我见过/usr/bin/env bash,也见过/bin/bash,还有/usr/bin/bash,还有/bin/sh,还有/usr/bin/env sh.这算是编程界的“’茴’字四种写法”了. 在多数情况下,以上五种写法都是等价的.但是,写过程序的人都知道:“少数情况”里往往隐藏

笔记——shell脚本学习指南

<shell脚本学习指南>机械工业出版 ISBN 987-7-111-25504-8 第2章 2.4 初级陷阱 1.当今的系统,对#!这一行的长度限制从63到1024个字符都有,尽量不要超过64个字符. 2.在某些系统上,命令行部分包含了命令的完整路径名称.不过有些系统却不是这样:命令行的部分会原封不动地传递给被引用的程序. 3.别在选项之后放置任何空白,因为空白也会跟着选项一起传递给被引用的程序. 4.你需要知道解释其的完整路径名称.这可以用来规避可移植问题,因为不同的厂商可能将同样的东西放

shell脚本学习与总结

shell脚本学习总结,东西很多,供初学者参考. shell脚本是区分大小写的. 2.Unix特殊字符有: ( ; $ ? & * () [] ` ' " + 使用其时要进行转义() 3.Shell的注释以#开头 4.函数的定义Function fuction_name(){ Command to execute} 调用时直接用function_name. 5.控制结构 1)If...then语句 If [ test_command ]    Then    Commandsfi2)If

shell脚本学习笔记系列--1

一.学好shell编程的知识储备 1.相关Linux系统命令应用: 2.Vi/vim 编辑器的熟练使用,相关客户端软件的设置: 3.基础的服务,系统服务ntp,crond,网络服务:nfs,rsync,inotify,sersync,ssh,lanmp等. 补充:清空日志的三种方法: 1)echo  " " > filename.log 2)>filename.log 3)cat  /dev/null > filename.log 注:工作中有的时候不能删除(日志)文

shell脚本(四)

shell脚本(四) (7)tr命令 #实现字符转换功能 #-c string:反选string字符集,即除了该字符串的所有字符集 #-d string:删除string中出现的所有字符 #-s:删除所有重复出现的字符序列,只保留一个 #删除所有数字 tr -d "[[:digit:]]" < name.txt tr -d 0-9 < name.txt #所有小写字母转换成大写字母 tr  "[a-z]" "[A-Z]" < n

shell脚本第四篇——常用小脚本

shell脚本第四篇--常用小脚本 1.将系统进程按内存占用大小排列显示出来 # ps -e  -o "%C   : %p : %z : %a"|sort -k5-nr 2.将系统进程按CPU占用大小排列显示 # ps -e  -o "%C   : %p : %z : %a"|sort   -nr 或# ps aux --sort -rss 3.查找当前目录下占用为0字节的文件并删除 # find ./ -type f -size 0 -exec rm -rf {}

Shell脚本学习指南 [ 第三、四章 ] 查找与替换、文本处理工具

摘要:第三章讨论的是编写Shell脚本时经常用到的两个基本操作.第四章总共介绍了约30种处理文本文件的好用工具. 第三章 查找与替换 概括:本章讨论的是编写Shell脚本时经常用到的两个基本操作:文本查找.文本替换. 3.1  查找文本 如需从输入的数据文件中取出特定的文本行,主要的工具为grep程序.POSIX采用三种不同grep变体:grep.egrep.fgrep整合为单个版本,通过不同的选项,分别提供这三种行为模式.who | grep -F root上面使用-F选项,以查找固定字符串r

Shell脚本学习一:shell三种引号学习

一.Shell中变量的声明和引用 [[email protected] ~]# var1=Hello [[email protected] ~]# echo $var1 Hello [[email protected] ~]# echo ${var1}World HelloWorld 在Shell中,变量的引用使用$. 上面的代码中,$var1就是对变量var1的引用,输出的结果是Hello. 如果想链接其他字符,将变量放到大括号{}里面,然后在后面跟上其他内容. 例如上面的代码中:${var1

shell脚本学习整理(二)

条件测试--test 或[ 命令"test"或"["可以测试一个条件是否成立,如果测试结果为真,则该命令的退出码为0,如果测试结果为假,则命令的退出码为1. 常见测试命令举例: note:左方括号[是一个命令的名字,传给命令的各参数之间应该用空格隔开,比如,$VAR.-gt.3.]是[命令的四个参数,它们之间必须用空格隔开.命令test或[的参数 形式是相同的,只不过test命令不需要]参数. 与.或.非的测试命令  [ ! EXPR ]  : EXPR可以是上述中

shell脚本学习笔记:通过shell实现linux用户管理和监控

学习shell做的第一个脚本,感谢云知梦李强强老师的shell编程教程 创建shell脚本文件: touch menu.sh touch index.sh touch welcome.sh 赋予脚本文件可执行权限: chmod a+x menu.sh index.sh welcome.sh menu.sh #!/bin/bash #menu.sh function menu(){ title="My Home" name="Randy" time=`date +%Y