8.3.8 Using dcli with the --hidestderr Option
This example shows how to use the --hidestderr
option.
This option can only be used when SSH is used for remotely run commands.
Example 8-8 Using the --hidestderr Option
This first command does not use the --hidestderr
option, so the errors are shown.
$ ./dcli -l root -g cell "ls -1 unknown_file; cellcli -e list cell"
exam08cel01: ls: unknown_file: No such file or directory
exam08cel01: exam08cel01 online
exam08cel02: ls: unknown_file: No such file or directory
exam08cel02: exam08cel02 online
This second command uses the
--hidestderr
option, so the errors are not shown. $ ./dcli -l root -g cell --hidestderr -l root "ls -l unknown_file;\
cellcli -e list cell"
exam08cel01: exam08cel01 online
exam08cel02: exam08cel02 online
Parent topic: dcli Examples