Post

[Bash] file 한줄씩 읽어들이기

bash에서 파일 읽어들여서 디렉토리 만들기

1
2
3
4
5
6
for name in $(cat SRA_SRP_list.txt)
do
  if [ ! -d ${name} ]; then
    mkdir ${name}
  fi
done

파일 한줄씩 읽기

1
2
3
4
5
6
7
8
9
10
11
# for
for name in $(cat names)
do
  echo "UserName: "${name}
done

# while
cat names | while read name
do
  echo "UserName "${name}
done

디렉토리 있는지 확인하고 없을때만 만들기

1
2
3
4
5
mkdir -p dir
# or
if [ ! -d $dir ]; then
    mkdir $dir
fi

Reference

This post is licensed under CC BY 4.0 by the author.

© Subin Cho. Some rights reserved.

Using the Chirpy theme for Jekyll.