You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TESTed uses a here document to redirect both single line strings and multiline strings to stdin. For single line strings, the representation looks cleaner if a here string is used. So
$ script arg1 arg2 << 'STDIN'single line inputSTDIN
could be displayed as
$ script arg1 arg2 <<<'single line input'
The text was updated successfully, but these errors were encountered:
TESTed uses a here document to redirect both single line strings and multiline strings to stdin. For single line strings, the representation looks cleaner if a here string is used. So
could be displayed as
The text was updated successfully, but these errors were encountered: