목차

Linux/Unix shell script

인자 갯수 검사 Argument count

if [ "$#" -ne 2 ]; then
    echo "인자 2개를 넘겨주어야 합니다."
fi

pipe 출력 결과를 그대로 실행하기

ls | sed ... | source /dev/stdin

Script 안에서 특정 내용의 파일 생성하기

cat <<EOF >/home/a.config
first line
second line
third line
EOF

다른 명령 Stream 으로부터 지속적으로 결과 읽어서 처리하기

find . -type f |
while read -r line
do
    echo "$line"
done
 
# one liner
find . -type f | while read -r line; do echo "$line"; done
 
 
# 혹은
 
while read -r line
do
    echo "$line"
done < <(find . -type f)

실패시 fallback 처리

# curl 명령 실패시에 "{}" 를 변수에 값으로 저장
TEST_RESULT=$(curl -Ss https://.... || echo "{}")

명령의 존재 검사

command -v <원하는명령>
 
if ! command -v <the_command> &> /dev/null
then
    echo "<the_command> could not be found"
    exit
fi
if hash gdate 2>/dev/null; then
    gdate "$@"
else
    date "$@"
fi

참조