Used as a Continue within bash loops.

#!/bin/bash
 
for i in `seq 100`; do
  if [ $i -eq 20 ]; then
    continue
  fi
  echo $i
done