1#!/bin/bash
2
3IFS=:
4for i in "a:b";do
5    echo "$i\n"
6done
7