소스 검색

save-to-eye: stop if stop file is present

master
Ivan Kozik 1 개월 전
부모
커밋
220db19dd6
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      save-to-eye

+ 5
- 0
save-to-eye 파일 보기

@@ -35,6 +35,11 @@ cat ~/eye-control/download-parallelism || echo -n 50 > ~/eye-control/download-pa
mkdir -p -- "$complete_dir"

while read i; do
if [[ -f ~/eye-control/stop ]]; then
echo "exiting because stop file is present"
exit 1
fi

echo -E $i

eye_path=$(path-to-eye-path "$i" | sed -r "s,$HOME/stash/,,g")


불러오는 중...
취소
저장