摘要: Network Monitor 3.4 is the archive versioned tool for network traffic capture and protocol analysis. 阅读全文
posted @ 2024-10-19 08:34 rvy 阅读(7) 评论(0) 推荐(0) 编辑
摘要: linux 保存标准输出和标准错误 keywords: 重定向 示例程序: #include <stdio.h> int main() { // 写入标准输出 (stdout) printf("This is a message to stdout.\n"); // 写入标准错误 (stderr) 阅读全文
posted @ 2024-10-19 08:34 rvy 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Bourne shell 使用0、1、2作为输出重定向的文件描述符。 ```r 0 : stdin(standard input) 1 : stdout(standard output) 2 : stderr(standard error) ``` 阅读全文
posted @ 2024-10-19 08:32 rvy 阅读(7) 评论(0) 推荐(0) 编辑