#!/bin/bash

# IFS=" \t\n"

IFS="d"
S="qwe asd zxc"
for i in $S; do
    echo "$i"
done
