Skip to content

Instantly share code, notes, and snippets.

View ihoro's full-sized avatar
🌊
surfing the endless ocean...

Igor Ostapenko ihoro

🌊
surfing the endless ocean...
View GitHub Profile
@ihoro
ihoro / muninn
Created August 28, 2024 09:15
muninn -- run a command and report via Slack webhook when it's complete
#!/bin/sh
#
# Usage examples:
# $ make -j8 buildworld; muninn
# $ muninn make -j8 buildworld # TODO: double quotes are not supported yet in the string after muninn
#
T_START=$(date "+%s")
$*
T_END=$(date "+%s")