Skip to content

Instantly share code, notes, and snippets.

@pesterhazy
Created June 23, 2015 08:51
Show Gist options
  • Save pesterhazy/f0f6286a895c85210884 to your computer and use it in GitHub Desktop.
Save pesterhazy/f0f6286a895c85210884 to your computer and use it in GitHub Desktop.
redirect output to a file without ">"
#!/usr/bin/env bash
#
# Save to /usr/bin/into
#
# Usage: into output.txt tac input.txt
#
set -euo pipefail
to="$1"
shift
exec "$@" > "$to"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment