Skip to content

Instantly share code, notes, and snippets.

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 felipeamarante/4f9a9454be6a5f472108429740232534 to your computer and use it in GitHub Desktop.
Save felipeamarante/4f9a9454be6a5f472108429740232534 to your computer and use it in GitHub Desktop.
Ship EC2 Linux user-data logs to console
#!/bin/bash -xe
exec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1
# Your wonder code below
echo "hello flat earth believers"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment