Skip to content

Instantly share code, notes, and snippets.

@mgoldey
Created April 18, 2019 18:12
Show Gist options
  • Save mgoldey/9202a2d1e3d15d4458ffa81890ea008a to your computer and use it in GitHub Desktop.
Save mgoldey/9202a2d1e3d15d4458ffa81890ea008a to your computer and use it in GitHub Desktop.
#/usr/bin/env bash
# does something every n times where here it's just printing from another list of ints
n=0;for i in {1..20}; do (((++n)%4)) || echo $i ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment