Skip to content

Instantly share code, notes, and snippets.

@lambdaknight
Created March 29, 2013 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lambdaknight/5273810 to your computer and use it in GitHub Desktop.
Save lambdaknight/5273810 to your computer and use it in GitHub Desktop.
Redirection of heredoc in zsh
(
cat << FOO
Some text here
Some more text
Yet some more text.
FOO
) > some_file
Copy link

ghost commented Mar 29, 2013

% <<FOO >somefile 
heredoc> look
heredoc> no
heredoc> cat
heredoc> FOO
% < somefile 
look
no
cat
% 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment