Useful snippets

    Repeatedly run same command

    2024-02-06

    Run "npm run build" 10 times

    for i in {1..10}; do npm run build; done

    Wait beetween commands

    for i in {1..10}; do npm run build && sleep 1; done