linux shell 读取文件脚本

逐行读取文本文件的几种方法:
shell中有没有类似 于open的命令??
也就是用shell能不能打开文件获得句柄呢??

1.用read读取文件重定向
#! /bin/bash

while read line
do
echo $line
done < filename
2.使用管道
cat filename |while read line
do
echo \$line
done

3.使用for in
for line in $(cat filename)
do
echo $line

还有种使用文件描述符的方法,关于文件描述符我还不太懂
0 stdin
1 stdout
2 stderr

我只理解这几个常用的
2>/dev/null
1>/dev/null
2>&1
1>&2

转载于:https://www.cnblogs.com/lineuman/p/6776017.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值