1. 如何用Shell逐行读取文件
这个的话写一个for循环就可以了 假设你的文件是file,里面有n行 在bash环境中 for i in `cat file`doecho $idone!
2. 新手,请问如何用shell一行一行读取文件中的内容
写一个for循环就可以了
foriin`catfilename`doecho$idone
这个里面$i就是一行行的信息
3. 请教shell的读取文件内容
请教shell的读取文件内容
我有个文件如test,内容为:(一行或多行)
db_09_11.tgz
db_09_12.tgz
db_09_13.tgz
…..
如果一行行读取其中的内容?
我的用版法是权,得到这个test,读取里面的内容(一行或多行),每读一行后就对如读到db_09_11.tgz就进行其它的操作
#!/bin/bashcat test | while read linedoecho $linedone
4. shell 怎样将文件内容读入变量
var=$(cat name.txt)
5. 如何在用shell脚本读取一个文件中指定的内容
cat yourfile|grep "xxx" 脚本里面就可以: a=`cat yourfile|grep "xxx"` 那么echo $a就知道了
6. 如何用shell脚本读取文件的内容
#!/bin/shfor i in `cat abc.txt`do -f /old/$i /new &> /dev/nulldone
7. shell编写一个读取文件内容,作为变量,放入一个设定的linux语句中,然后执行它
#!/bin/sh for yyyy in `cat 1.txt`;domv /abc/good${yyyy}/ abc/${yyyy};done
8. linux shell 读取一个配置文件并获取其中的全部内容,急!!!!!!!
下面是读取复配置文件,制作为变量显示出来,实例如下:[[email protected] ~]$ cat boot.inipath='/data/source'username='myuser'password='mypassword'[[email protected] ~]$ cat test.sh#!/bin/sheval `cat ./boot.ini`echo "$username"echo "$path"echo "$password"[[email protected] ~]$ ./test.shmyuser/data/sourcemypassword
9. shell读取一个txt文件的内容
awk'{if(a==1){print>>"a.txt"a=2}elseif(a==2){print>>"b.txt"a=1}}/求大神指点/{a=1}'"路径/桌面/abc/123.txt"
未经允许不得转载:山九号 » shell读取文件的内容|如何用shell脚本读取文件的内容