rt icon indicating copy to clipboard operation
rt copied to clipboard

Allow for stdin input to rt shell action.

Open marbud0 opened this issue 3 years ago • 0 comments

This makes it possible to more easily script bulk operations for RT by allowing to read from STDIN instead of the tty when STDIN is NOT connected to a tty.

For example, this now works: rt ls -t user -i | sed 's/user/show user/' | rt and is aproximately two times faster than rt ls -t user -i | while read a;do rt show $a;done

marbud0 avatar Feb 10 '21 16:02 marbud0