선 밖에 선 자유인

Bash split 본문

IT/System & Network

Bash split

Hotman 2015. 6. 29. 16:35

xxx.xls

bbb.xls

...



파일명과 확장자 split in bash


LIST=`ls`


# convert xls to csv

for i in $LIST

do

    IFS='. ' read -a array <<< $i

    LINE1=${array[0]}

    echo $LINE1

done



Comments