基本的檔案 "list" 命令。很容易低估这个简单命令的力量。例如,使用-R, 递归选项,ls 提供目录结构的树状列表。其他有用的选项是-S, 按文件大小排序列表,-t, 按文件修改时间排序,-v, 按文件名中嵌入的(数字)版本号排序, [1]-b, 显示转义字符,和-i, 显示文件 inodes (参见 示例 16-4)。
bash$ ls -l -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter10.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter11.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter12.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter1.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter2.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter3.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Chapter_headings.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Preface.txt bash$ ls -lv total 0 -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Chapter_headings.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:49 Preface.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter1.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter2.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter3.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter10.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter11.txt -rw-rw-r-- 1 bozo bozo 0 Sep 14 18:44 chapter12.txt |
![]() | ls 命令在尝试列出不存在的文件时返回非零 退出状态。
|
示例 16-1。使用 ls 创建用于刻录 CDR 光盘的目录表
#!/bin/bash # ex40.sh (burn-cd.sh) # Script to automate burning a CDR. SPEED=10 # May use higher speed if your hardware supports it. IMAGEFILE=cdimage.iso CONTENTSFILE=contents # DEVICE=/dev/cdrom For older versions of cdrecord DEVICE="1,0,0" DEFAULTDIR=/opt # This is the directory containing the data to be burned. # Make sure it exists. # Exercise: Add a test for this. # Uses Joerg Schilling's "cdrecord" package: # http://www.fokus.fhg.de/usr/schilling/cdrecord.html # If this script invoked as an ordinary user, may need to suid cdrecord #+ chmod u+s /usr/bin/cdrecord, as root. # Of course, this creates a security hole, though a relatively minor one. if [ -z "$1" ] then IMAGE_DIRECTORY=$DEFAULTDIR # Default directory, if not specified on command-line. else IMAGE_DIRECTORY=$1 fi # Create a "table of contents" file. ls -lRF $IMAGE_DIRECTORY > $IMAGE_DIRECTORY/$CONTENTSFILE # The "l" option gives a "long" file listing. # The "R" option makes the listing recursive. # The "F" option marks the file types (directories get a trailing /). echo "Creating table of contents." # Create an image file preparatory to burning it onto the CDR. mkisofs -r -o $IMAGEFILE $IMAGE_DIRECTORY echo "Creating ISO9660 file system image ($IMAGEFILE)." # Burn the CDR. echo "Burning the disk." echo "Please be patient, this will take a while." wodim -v -isosize dev=$DEVICE $IMAGEFILE # In newer Linux distros, the "wodim" utility assumes the #+ functionality of "cdrecord." exitcode=$? echo "Exit code = $exitcode" exit $exitcode |
cat,concatenate 的缩写,将文件列出到stdout。当与重定向 (> 或 >>) 结合使用时,它通常用于连接文件。
# Uses of 'cat' cat filename # Lists the file. cat file.1 file.2 file.3 > file.123 # Combines three files into one. |
![]() | 在 管道 中,将stdin重定向到文件,而不是 cat 文件,可能更有效。
|
tac,是 cat 的逆向操作,从文件末尾向后列出文件。
反转文件的每一行,并输出到stdout。这与 tac 的效果不同,因为它保留了行的顺序,但将每一行翻转过来(镜像图像)。
bash$ cat file1.txt This is line 1. This is line 2. bash$ tac file1.txt This is line 2. This is line 1. bash$ rev file1.txt .1 enil si sihT .2 enil si sihT |
这是文件复制命令。cp file1 file2复制file1到file2,覆盖file2如果它已存在(参见 示例 16-6)。
![]() | 特别有用的是-a存档标志(用于复制整个目录树),-u更新标志(防止覆盖同名的新文件),以及-r和-R递归标志。
|
这是文件 移动 命令。它相当于 cp 和 rm 的组合。它可用于将多个文件移动到目录,甚至重命名目录。有关在脚本中使用 mv 的一些示例,请参见 示例 10-11 和 示例 A-2。
![]() | 当在非交互式脚本中使用时,mv 采用-f(强制)选项来绕过用户输入。 当目录移动到预先存在的目录时,它将成为目标目录的子目录。
|
删除(移除)一个或多个文件。的-f选项强制删除甚至只读文件,并且对于绕过脚本中的用户输入很有用。
![]() | rm 命令本身将无法删除以破折号开头的文件名。为什么?因为 rm 将以破折号开头的文件名视为 选项。
一种巧妙的解决方法是在文件名之前加上 " -- "(选项结束 标志)。
另一种方法是在要删除的文件名前面加上点斜线 .
|
移除目录。目录必须为空,不包含所有文件——包括 "隐藏" 的 点文件 [2]——此命令才能成功。
创建目录,创建一个新目录。例如,mkdir -p project/programs/December创建名为目录。的-p选项自动创建任何必要的父目录。
更改现有文件或目录的属性(参见 示例 15-14)。
chmod +x filename # Makes "filename" executable for all users. chmod u+s filename # Sets "suid" bit on "filename" permissions. # An ordinary user may execute "filename" with same privileges as the file's owner. # (This does not apply to shell scripts.) |
chmod 644 filename # Makes "filename" readable/writable to owner, readable to others #+ (octal mode). chmod 444 filename # Makes "filename" read-only for all. # Modifying the file (for example, with a text editor) #+ not allowed for a user who does not own the file (except for root), #+ and even the file owner must force a file-save #+ if she modifies the file. # Same restrictions apply for deleting the file. |
chmod 1777 directory-name # Gives everyone read, write, and execute permission in directory, #+ however also sets the "sticky bit". # This means that only the owner of the directory, #+ owner of the file, and, of course, root #+ can delete any particular file in that directory. chmod 111 directory-name # Gives everyone execute-only permission in a directory. # This means that you can execute and READ the files in that directory #+ (execute permission necessarily includes read permission #+ because you can't execute a file without being able to read it). # But you can't list the files or search for them with the "find" command. # These restrictions do not apply to root. chmod 000 directory-name # No permissions at all for that directory. # Can't read, write, or execute files in it. # Can't even list files in it or "cd" to it. # But, you can rename (mv) the directory #+ or delete it (rmdir) if it is empty. # You can even symlink to files in the directory, #+ but you can't read, write, or execute the symlinks. # These restrictions do not apply to root. |
Change file attributes。这类似于上面的 chmod,但具有不同的选项和不同的调用语法,并且仅适用于 ext2/ext3 文件系统。
一个特别有趣的 chattr 选项是i。 chattr +i filename 将文件标记为不可变。该文件无法修改、链接或删除,即使是 root 用户也不行。此文件属性只能由 root 设置或删除。以类似的方式,a选项将文件标记为仅追加。
root# chattr +i file1.txt root# rm file1.txt rm: remove write-protected regular file `file1.txt'? y rm: cannot remove `file1.txt': Operation not permitted |
如果文件具有s(安全)属性集,那么当它被删除时,它的块将被二进制零覆盖。 [3]
如果文件具有u(取消删除)属性集,那么当它被删除时,它的内容仍然可以被检索(取消删除)。
如果文件具有c(压缩)属性集,那么它将在写入磁盘时自动压缩,并在读取时解压缩。
![]() | 用 chattr 设置的文件属性不会显示在文件列表 (ls -l) 中。 |
创建指向预先存在文件的链接。"链接" 是对文件的引用,是它的替代名称。ln 命令允许使用多个名称引用链接文件,并且是别名的高级替代方案(参见 示例 4-6)。
ln 仅创建一个引用,一个指向文件的指针,大小只有几个字节。
ln 命令最常与-s-s-s标志的优点是它允许跨文件系统或链接到目录。
命令的语法有点棘手。例如ln -s oldfile newfile链接先前存在的oldfile到新创建的链接,newfile.
![]() | 如果名为newfile的文件先前已存在,则会导致错误消息。 |
链接使您能够使用多个名称调用脚本(或任何其他类型的可执行文件),并使该脚本根据其调用方式执行。
示例 16-2。你好或再见
#!/bin/bash # hello.sh: Saying "hello" or "goodbye" #+ depending on how script is invoked. # Make a link in current working directory ($PWD) to this script: # ln -s hello.sh goodbye # Now, try invoking this script both ways: # ./hello.sh # ./goodbye HELLO_CALL=65 GOODBYE_CALL=66 if [ $0 = "./goodbye" ] then echo "Good-bye!" # Some other goodbye-type commands, as appropriate. exit $GOODBYE_CALL fi echo "Hello!" # Some other hello-type commands, as appropriate. exit $HELLO_CALL |
这些命令访问系统命令和已安装实用程序的手册页和信息页。在可用时,info 页通常包含比 man 页更详细的描述。
已经有各种 "自动化" 编写 man pages 的尝试。有关朝着这个方向迈出试探性第一步的脚本,请参见 示例 A-39。
[1] | 的-v选项也按大写和小写前缀文件名排序。 |
[2] | 点文件 是名称以 点 开头的文件,例如~/.Xdefaults。此类文件名不会出现在正常的 ls 列表中(虽然 ls -a 会显示它们),并且它们不能被意外的 rm -rf * 删除。点文件通常用作用户主目录中的设置和配置文件。 |
[3] | 此特定功能可能尚未在系统上安装的 ext2/ext3 文件系统版本中实现。查看您的 Linux 发行版的文档。 |