当前位置: 技术问答>linux和unix
请教一个文本写入的问题。请大家帮帮忙。。。。
来源: 互联网 发布时间:2015-10-31
本文导语: 写了一个ADD.sh脚本 读入一个变量: read ww 我想将 $ww 写入/root/Temp.txt的文本里的最后一行,要用什么命令现实呢? 例如/root/Temp.txt里已有: Couch David A 02-95673456 26 chef 23-04-1994 Jon...
写了一个ADD.sh脚本
读入一个变量:
read ww
我想将 $ww 写入/root/Temp.txt的文本里的最后一行,要用什么命令现实呢?
例如/root/Temp.txt里已有:
Couch David A 02-95673456 26 chef 23-04-1994
Jones Sarah B 02-95671660 45 sales manager 14-12-1995
Smith John C 02-93272658 43 technical manager 12-10-1993
在READ时打入:
Williams Nick T 02-98781987 35 computer officer 10-08-1998
这时/root/Temp.txt变成
Couch David A 02-95673456 26 chef 23-04-1994
Jones Sarah B 02-95671660 45 sales manager 14-12-1995
Smith John C 02-93272658 43 technical manager 12-10-1993
Williams Nick T 02-98781987 35 computer officer 10-08-1998
--------------------------
越简单越好。谢谢。。。。。。
读入一个变量:
read ww
我想将 $ww 写入/root/Temp.txt的文本里的最后一行,要用什么命令现实呢?
例如/root/Temp.txt里已有:
Couch David A 02-95673456 26 chef 23-04-1994
Jones Sarah B 02-95671660 45 sales manager 14-12-1995
Smith John C 02-93272658 43 technical manager 12-10-1993
在READ时打入:
Williams Nick T 02-98781987 35 computer officer 10-08-1998
这时/root/Temp.txt变成
Couch David A 02-95673456 26 chef 23-04-1994
Jones Sarah B 02-95671660 45 sales manager 14-12-1995
Smith John C 02-93272658 43 technical manager 12-10-1993
Williams Nick T 02-98781987 35 computer officer 10-08-1998
--------------------------
越简单越好。谢谢。。。。。。
|
read ww;echo $ww >> /root/Temp.txt