看下面这个例子(例子略,等我补上)
<坑,待填>
例1,将命令输出中的错误信息丢弃
可以参考之前的文章: http://www.jb51.cc/article/p-coywgvvd-bpn.html
例2,用exec命令创建自己的文件描述符
创建一个文件描述符进行文件读取(对应于文件打开模式中的只读模式),使用文件描述符3打开文件input.txt:qingsong@db2a:/tmp$ echo this is a test line > input.txt
qingsong@db2a:/tmp$ exec 3<input.txt
之后就可以使用它:
qingsong@db2a:/tmp$ cat <&3
this is a test line
创建文件描述符用于写入(对应于文件打开模式中的截断模式)
qingsong@db2a:/tmp$ exec 4>output.txt
之后就可以使用它:
qingsong@db2a:/tmp$ cat<<EOF>&4
> Hello,world
> line 2
> EOF
qingsong@db2a:/tmp$ cat output.txt
Hello,world
line 2
这里的cat<<EOF>&4意思是从标准输入中读取,然后重定向到文件描述符4,EOF可以换成其他字符串,习惯上使用EOF
创建文件描述符用于追加(对应于文件打开模式中的追加模式:
qingsong@db2a:/tmp$ exec 5>>output.txt
使用文件描述符:
qingsong@db2a:/tmp$ echo line three >&5
qingsong@db2a:/tmp$ cat output.txt
Hello,world
line 2
line three
例3,
可以解释为什么删除了DB2的容器之后,表空间还是正常状态,直到重启。或者删除活动日志之后,为啥没有crash?
下面的例子中,虽然删除了表空间的容器,但表空间状态一切正常,直到重启数据库:
inst105@db2a:~$ db2 "connect to sample" inst105@db2a:~$ db2 "create tablespace tbs1 managed by database using (file '/home/inst105/con1' 5000)" inst105@db2a:~$ db2 "create table t1(id int) in tbs1" inst105@db2a:~$ db2 "insert into t1 values(100),(200)" inst105@db2a:~$ rm /home/inst105/con1 inst105@db2a:~$ ls /home/inst105/con1 ls: cannot access /home/inst105/con1: No such file or directory inst105@db2a:~$ db2 "insert into t1 values(300)" DB20000I The sql command completed successfully. inst105@db2a:~$ db2 "select * from t1" ID ----------- 100 200 300 3 record(s) selected. inst105@db2a:~$ db2 "force applications all" inst105@db2a:~$ db2 "deactivate db sample" inst105@db2a:~$ db2 "connect to sample" inst105@db2a:~$ db2 "select * from t1" ID ----------- sql0290N Table space access is not allowed. sqlSTATE=55039
因为 程序是通过文件描述符操纵的文件,而不是文件名。你删了文件,实际上只是删了个文件名,文件描述符还是打开状态,真正的文件数据还没被删除,不信,你看:
inst105@db2a:~$ echo this is a test line > input.txt
inst105@db2a:~$ exec 3<input.txt
inst105@db2a:~$ rm input.txt
inst105@db2a:~$ ls input.txt
ls: cannot access input.txt: No such file or directory
inst105@db2a:~$ cat <&3 this is a test line 文件已经被“删掉”了,还能通过文件描述符访问 原文链接:/bash/391224.html