Skip to content

Instantly share code, notes, and snippets.

@rjoydip-zz
Created May 8, 2021 05:47
Show Gist options
  • Save rjoydip-zz/d7a75f54d9a73ad6f9c2a812e77306dd to your computer and use it in GitHub Desktop.
Save rjoydip-zz/d7a75f54d9a73ad6f9c2a812e77306dd to your computer and use it in GitHub Desktop.
Extract terminal output and create a log file
#!/bin/sh
npm start | while IFS= read -r line; do printf '%s %s\n' "[$(date "+%Y-%m-%d %H:%M:%S")]" "$line"; done >>/log/logger.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment