linux shell 如何把txt文本中每一行提取出来赋值给一变量,再输出这一变量
发布网友
发布时间:2022-04-23 14:31
我来回答
共5个回答
热心网友
时间:2023-10-18 14:39
: No such file or directorybash
你的shell脚本有可能是在windows下编写的,然后在转移到linux执行的。
#vi filename
然后用命令
:set ff ---------查看时dos还是unix
若是dos字样, 那么你可以用set ff=unix把它强制为unix格式的, 然后存盘退出. 再运行一遍看。
建立脚本最好在linux下,使用touch filename.sh来创建,再用vi filename.sh来编写脚本命令。
例如:
#touch dd.sh
#vi dd.sh
然后输入下面的内容。
#!bin/bash
#文本txt每一行复制并输出----注释
cat 123.txt|while read var;do
echo $var
done
exit 0
保存后,使用
#bash dd.sh
或者
#chmod 777 ss.sh
#./dd.sh
就可以运行啦。
热心网友
时间:2023-10-18 14:39
使用cat的话可以这样:
cat 123.txt | while read line
do
echo "$line"
done
123.txt的每行读取到变量line中并输出。
热心网友
时间:2023-10-18 14:39
: No such file or directorybash
你的shell脚本有可能是在windows下编写的,然后在转移到linux执行的。
#vi filename
然后用命令
:set ff ---------查看时dos还是unix
若是dos字样, 那么你可以用set ff=unix把它强制为unix格式的, 然后存盘退出. 再运行一遍看。
建立脚本最好在linux下,使用touch filename.sh来创建,再用vi filename.sh来编写脚本命令。
例如:
#touch dd.sh
#vi dd.sh
然后输入下面的内容。
#!bin/bash
#文本txt每一行复制并输出----注释
cat 123.txt|while read var;do
echo $var
done
exit 0
保存后,使用
#bash dd.sh
或者
#chmod 777 ss.sh
#./dd.sh
就可以运行啦。
热心网友
时间:2023-10-18 14:39
使用cat的话可以这样:
cat 123.txt | while read line
do
echo "$line"
done
123.txt的每行读取到变量line中并输出。
热心网友
时间:2023-10-18 14:40
使用如下格式:
#!/bin/sh
# 这边写文件名(全路径)
FILE_NAME=""
while read LINE
do
echo $LINE
done < $FILE_NAME
热心网友
时间:2023-10-18 14:40
使用如下格式:
#!/bin/sh
# 这边写文件名(全路径)
FILE_NAME=""
while read LINE
do
echo $LINE
done < $FILE_NAME
热心网友
时间:2023-10-18 14:40
#!/bin/bash
while IFS= read line
do
echo $line
done < ./file.txt
热心网友
时间:2023-10-18 14:41
字串符比较常见。但是这个没有限定,因为你可以进行类型转换
热心网友
时间:2023-10-18 14:40
#!/bin/bash
while IFS= read line
do
echo $line
done < ./file.txt
热心网友
时间:2023-10-18 14:41
字串符比较常见。但是这个没有限定,因为你可以进行类型转换