BSA Network Shell系列-redi命令

redi

## 1 功能概述

redi将输出重定向到一个文件中

## 2 语法

redi [-?] [-a] filename

## 3 使用示例

1 将输出重定向到隐式路径所在主机的/tmp/haha文件中,此处隐式路径所在主机是lzx-clone1

lzx-clone1# ifconfig |redi /tmp/haha

等价于

ifconfig > /tmp/haha

2 将输出追加到文件中

grep evil /etc/passwd | redi -a //vaduz/etc/users.bad

## 4 详细说明

redi读取标准输入并写入到指定的文件中,如果文件不存在,则redi会创建该文件。该工具的主要目的是可以执行分布式重定向。也就是说你可以使用redi替代shell命令中的">"和">>",将数据通过管道方式发送到redi命令。

## 5 参数选项

默认不加任何参数,则会覆盖写入文件中。等同于">"命令

-a 将内容追加到文件中,如果文件不存在则创建文件。等同于">>"命令

-? 打印帮助

## 6 问题解析

1 redi: Unable to redirect output to file filename

redi was unable to create or append to the file filename

2 redi: Error redirecting output to file filename

An error occurred while trying to write data to the named output file. This message will be followed by system error message offering a possible reason for the error

## 7 Exit Code

  0 无错误

  1 指定了无效参数

  2 重定向到文件时出错

  255 没有license

上一篇:【Kill】两条Linux命令彻底杀死Oracle


下一篇:redis 密码配置