Skip to content

Instantly share code, notes, and snippets.

View slashinfty's full-sized avatar

Matt Braddock slashinfty

View GitHub Profile
@slashinfty
slashinfty / .bash_stimer_alias
Last active July 9, 2023 15:55 — forked from lillesvin/shplit.sh
Command line split timer - set up as an alias to easily run - removed text pipe option due to poor performance with obs
#!/bin/bash
alias stimer='shplit'
function shplit() {
FORMAT="%s.%2N"
STARTTIME=$(date +${FORMAT})
function format_duration {
printf "%.2f" $1
}