Wade Preston Shearer wrote:
Is it possible to do the following (example written in PHP) in a shell script?$var = 'abc'; $var .= 'dfg'; $var .= 'hij';
Try x="abc" x=$x"dfg" x=$x"hij" /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
