自定义文件描述符

0:stdin

1:stdout

2:stderr

3:只读模式  <

4:截断模式  >

5:追加模式  >>


eg:

只读模式:

$ echo this is the test line > test.txt

$ exec 3<test.txt #以只读模式打开文件

$ cat test.txt

(每次读取都需要重新分配文件描述符)

截断模式:

$ exec 4>test.txt   #以截断模式打开文件用于写入

$ echo another test line >&4

$ cat test.txt

another test line

追加模式:

$ exec 5>>test.txt #以追加模式打开文件用于写入

$ echo a new test line >&5

$ exec 3<test.txt

$ cat test.txt

another test line

a new line


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值