I have several input files looking like this and before loop the processing for all the files i would like to get the 1st column in the same line splitted with || .
Input.txt
aa      ,DEC   
bb      ,CHAR       
cc      ,CHAR      
dd      ,DEC    
ee      ,DEC   
ff      ,CHAR     
gg      ,DEC   
For my try this is my commands :
cat $1| while read line
do
cle=`echo $line|cut -d"," -f1`
        for elem in $cle 
        do
            echo -n "$elem||"
        done
    fi
done 
But the problem I got the || in the end of the output file ;
He is the result I'm looking for in one line :
aa || bb || cc || dd || ee || ff || gg 
 
    