linux怎么在代码里将每次的操作结果写入到文件中?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux怎么在代码里将每次的操作结果写入到文件中?相关的知识,希望对你有一定的参考价值。

用 > 把输出转向就可以了
例子:
[lhd@hongdi ~]$ ls > ls.txt
[lhd@hongdi ~]$ cat ls.txt
1.gtkrc-2.0
2009
a
amsn_received
a.tar.gz
说明: > 是把输出转向到指定的文件,如文件已存在的话也会重新写入,文件原内容不会保留
>> 是把输出附向到文件的后面,文件原内容会保留下来。
更多更详细的Linux知识可参考《Linux就该这么学》。
参考技术A 1.覆盖写入:
echo "日志内容" > 文件
2.追加写入:
echo "日志内容" >> 文件
3.linux shell中"2>&1"含义
对于& 1 更准确的说应该是文件描述符 1,而1标识标准输出,stdout。
对于2 ,表示标准错误,stderr。
2>&1 的意思就是将标准错误重定向到标准输出。
index.php task testOne >/dev/null 2>&1 (忽略所有的输出)
可参考下Linux书籍《Linux就该这么学》。
参考技术B >> 追加到某个文件
>这是覆盖。你可以试试
比如ifconfig >>1.txt 然后cat 1.txt

Linux C 文件与目录3 文件读写

文件读写

  文件读写是指从文件中读出信息或将信息写入到文件中。Linux文件读取可使用read函数来实现的,文件写入可使用write函数来实现。在进行文件写入的操作时,只是在文件的缓冲区中操作,可能没有立即写入到文件中。需要使用sync或fsync函数将缓冲区的数据写入到文件中


 

文件写操作:

函数write可以把一个字符串写入到一个已经打开的文件中,这个函数的使用方法如下:

ssize_t  write  (int fd , void *buf , size_t  count);

参数:

  fd:已经打开文件的文件编号。

  buf:需要写入的字符串。

  count:一个整数型,需要写入的字符个数。表示需要写入内容的字节的数目。

返回值:

  如果写入成功,write函数会返回实际写入的字节数。发生错误时则返回-1,可以用errno来捕获发生的错误。

[[email protected] exercise]$ cat write.c
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
int main(void)
{
int fd ;
char path[] = "txt1.txt";
char s[]="hello ...";
extern int errno;
fd = open(path , O_WRONLY|O_CREAT|O_TRUNC , 0766);
if(fd != -1)
{
printf("opened file %s .\n" , path);
}
else
{
printf("can‘t open file %s.\n" , path);                          
printf("errno: %d\n" , errno);                          //打印错误编号
printf("ERR : %s\n" , strerror(errno));             //打印错误编号对应的信息。
}
write(fd , s , sizeof(s));
close(fd);
printf("Done\n");
return 0;
}

[[email protected] exercise]$ ./write
opened file txt1.txt .
Done


读取文件函数read

函数read可以从一个打开的文件中读取字符串。

ssize_t  read(int fd , void *buf , size_t  count);

参数:fd:表示已经打开的文件的编号。

   buf:是个空指针,读取的内容会返回到这个指针指向的字符串。

   count:表示需要读取的字符的个数。

返回值:返回读取到字符的个数。如果返回值为0,表示已经达到文件末尾或文件中没有内容可读。

 

fd = open(path , O_RDONLY);
if(fd != -1)
{
printf("opened file %s .\n" , path);
}
else
{
printf("can‘t open file %s.\n" , path);
printf("errno: %d\n" , errno);
printf("ERR : %s\n" , strerror(errno));
}
if((size = read(fd , str , sizeof(str))) < 0)
{
printf("ERR: %s" , strerror(size));                    //如果有错,通过错误编号打印错误消息。
}
else
{
printf("%s\n" , str);
printf("%d\n" , size);
}
close(fd);
return 0;
}

result:

  

opened file txt1.txt .
hello ...
10

以上是关于linux怎么在代码里将每次的操作结果写入到文件中?的主要内容,如果未能解决你的问题,请参考以下文章

ansys vwrite命令 为啥每次写入都会将原来的数据删除,如何继续写入,不删除原数据??

怎样从百度云网盘里将东西下载至电脑

怎样用命令(CMD)把文字写入文档

java里将从excel读到的数据用csv导出,代码怎么写

在Linux系统的Vim中如何写入?

C语言写入文件,文件操作