in reply to Re^2: OT: Find unique values in a column
in thread OT: Find unique values in a column

Is there any other way I can achieve with awk or unix one liner commands?

Well,

perl -lane 'print $F[6] if ! $seen{ $F[6] }++' file.txt
is sort of a Unix one-liner, isn't it?  ;-)