关于linux shell 的问题

2024-11-26 16:57:05
推荐回答(4个)
回答1:

IFS_old=$IFS
IFS=':'
cat /etc/passwd | while read lin
do
for i in $lin
do
echo $i
done
done
IFS=$IFS_old

自己再修改一下

回答2:

read -p "please input name" IFS
cat /etc/passwd | grep $IFS > ~/1.txt

回答3:

etc/passwd password | tee -a logs| tail -1 | read IFS

回答4:

果断用cat查看重定向给一个文本,想咋看就咋看