hello, a got this code that returns me the first colum off the file, but he change colum with space, i want to change colum with another char, like ";"
/usr/bin/awk '{ print $0 }' file
example: a;b;c;d
this will return "a" and not the full line
thanks