문제가 있는 쉘 스크립트
여러분이 더 잘 이해할 수 있도록 제가 하려는 일을 설명하겠습니다. 내 디렉토리에 100개의 .torrent 파일이 있다고 가정해 보겠습니다. BitTorrent 클라이언트에 추가하면 그 중 2개가 각각 xxx.epub 및 yyy.epub를 다운로드하지만 100개 중 어느 2개인지는 알 수 없습니다.
따라서 내 스크립트가 수행하는 작업은 (1) find
모든 .torrent 파일을 반복 pwd
하고 각 .torrent 파일을 전달하는 것입니다. 그러면 transmission-show
.torrent 파일을 구문 분석하고 사람이 읽을 수 있는 형식으로 메타데이터를 출력합니다. 그런 다음 이를 사용하여 awk
토렌트가 다운로드할 파일 이름을 가져오고 이를 목록.txt에 대해 실행합니다. 여기에는 우리가 찾고 있는 파일 이름(xxx.epub 및 yyy.epub)이 포함되어 있습니다.
문서: findtor-array.sh
#! /bin/bash
#
# Search .torrent file based on 'Name' field.
#
# USAGE:
# cd ~/myspace # location of .torrent files
# Run `findtor ~/list.txt` (if `findtor.sh` is placed in `~/bin` or `~/.local/bin`)
# Turn the list of file names from ~/list.txt (or any file passed as argument) into an array
readarray -t FILE_NAMES_TO_SEARCH < "$1"
# For each file name from the list...
for FILE_NAME in "${FILE_NAMES_TO_SEARCH[@]}"
do
# In `pwd` and 1 directory-level under, look for .torrent files and search them for the file name
find . -maxdepth 2 -name '*.torrent' -type f -exec bash -c "transmission-show \"\$1\" | awk '/^Name\: / || /^File\: /' | awk -F ': ' '\$2 ~ \"$FILE_NAME\" {getline; print}'" _ {} \; >> ~/torrents.txt
# The `transmission-show` command included in `find`, on it own, for clarity:
# transmission-show xxx.torrent | awk '/^Name: / || /^File: /' | awk -F ': ' '$2 ~ "SEARCH STRING" {getline; print}'
done
나는 그 과정이 간단하고 제대로 하고 있다고 생각한다(확인하지 않은 것을 제외하고는). 그러나 전체 작업이 스크립트에 비해 너무 많은 것 같습니다. 스크립트를 실행한 후 일정 시간이 지나면 I Ctrl+ Cit까지 이러한 오류가 계속해서 발생하기 시작하기 때문입니다.
_: -c: line 0: unexpected EOF while looking for matching `"'
_: -c: line 1: syntax error: unexpected end of file
이러한 "스케일링" 문제가 있습니까? 내가 놓치고 있는 부분은 무엇이며 이를 해결하려면 어떻게 해야 합니까?
답변1
FILE_NAME
명령 옵션에 직접 전달됩니다 bash -c
. 따옴표/셸 코드가 포함되면 문제가 발생할 수 있습니다. 실제로,-exec
find
FILE_NAME
임의의 코드 실행 가능. 예: 이 특별한 경우에는 입력 파일에 다음 줄이 포함될 수 있습니다.'; echo "run commands";'
대신 bash -c
루프 var를 위치 인수로 전달하세요. 예를 들어:
find . -maxdepth 2 -name '*.torrent' -type f -exec sh -c '
transmission-show "$2" |
awk -v search="$1" '\''/^Name: / {name = substr($0,7)} /^File: / && name ~ search {print; exit}'\' \
_ "$FILE_NAME" {} \;
또한 각 파일에 대한 모든 검색어를 반복하는 것은 비효율적입니다. 파일을 반복하고 다음을 사용하여 검색하는 것을 고려하십시오 grep -f file
.
find . -maxdepth 2 -name '*.torrent' -type f -exec sh -c '
file=$1
shift
if transmission-show "$file" | head -n 1 | cut -d" " -f2- | grep -q "$@"; then
printf "%s\n" "$file"
fi' _ {} "$@" \;
아니면 find
:
for file in *.torrent */*.torrent; do
if transmission-show "$file" | head -n 1 | cut -d' ' -f2- | grep -q "$@"; then
printf '%s\n' "$file"
fi
done
- 위의 내용은 모든 인수를 에 전달하므로
grep
사용법은 고정 문자열 등에 대해findtor -f ~/list.txt
목록에서 패턴을 가져오는 것 입니다.-F
-e expression
답변2
@Kusalananda의 제안, 답변(@guest 및 @Jetchisel)을 기반으로 하며Kevin의 자세한 답변, 나는 이것을 생각해 냈습니다 :
#! /bin/bash
#
# Search for 'Name' field match in torrent metadata for all .torrent files in
# current directory and directories 1-level below.
#
# USAGE e.g.:
# cd ~/torrent-files # location of .torrent files
# Run `~/findtor.sh ~/list.txt`
# Get one file name at a time ($FILE_NAME_TO_SEARCH) to search for from list.txt
# provided as argument to this script.
while IFS= read -r FILE_NAME_TO_SEARCH; do
# `find` .torrent files in current directory and directories 1-level under
# it. `-print0` to print the full file name on the standard output, followed
# by a null character (instead of the newline character that `-print` uses).
#
# While that's happening, we'll again use read, this time to pass one
# .torrent file at a time (from output of `find`) to `transmission-show`
# for the latter to output the metadata of the torrent file, followed by
# `awk` commands to look for the file name match ($FILE_NAME_TO_SEARCH) from
# list.txt.
find . -maxdepth 2 -name '*.torrent' -type f -print0 |
while IFS= read -r -d '' TORRENT_NAME; do
transmission-show "$TORRENT_NAME" | awk '/^Name: / || /^File: /' | awk -F ': ' -v search_string="$FILE_NAME_TO_SEARCH" '$2 ~ search_string {getline; print}';
done >> ~/torrents-found.txt
done < "$1"
방금 이것을 실행했는데 지금까지는 잘 작동하는 것 같습니다. 참여해주신 모든 분들께 진심으로 감사드립니다!
최선을 다했지만 수정 사항이나 추가 제안을 환영합니다.
답변3
나는 이렇게 쓸 것입니다.
#!/usr/bin/env bash
pattern_file="$1"
while IFS= read -r -d '' file; do
transmission-show "$file" | awk .... "$pattern_file" ##: Figure out how to do the awk with a file rather than looping through an array.
done < <(find . -maxdepth 2 -name '*.torrent' -type f -print0)
이것은 인용 지옥을 피해야합니다 :-)
글쎄요, 아닐 수도 있어요 nullglob
.
편집하다:
find 명령을 시도하고 원본 스크립트와 함께 사용하십시오.
find . -maxdepth 2 -name '*.torrent' -type f -exec bash -c 'transmission-show "$1" | awk "/^Name\: / || /^File\: /" | awk -F ": " "\$2 ~ \"$FILE_NAME\" {getline; print}"' _ {} + >> ~/torrents.txt