======Command read====== ====Name==== **read** Reads one line from stdin and assigns to variables ====Synopsis==== **read** var1 [var2 ... varn] Reads one line from stdin, splits the line into fields using any of the charactors in the IFS variable (default space,tab), and assigns the values to the specified variables. Example: %% read a b <