내 상황은 다음과 매우 유사합니다. 문서 순환을 지원하는 PDF 뷰어/리더
유일한 대답은 키보드 단축키를 사용하여 이전 파일을 죽인 후 모든 파일을 차례로 여는 bash 스크립트를 만드는 것이 좋습니다. 이것은 매우 좋은 해결책처럼 보이지만 bash 스크립트는 작동하지 않습니다. bash에 대한 경험이 매우 제한적이라는 점을 감안할 때 여기에서 질문을 찾아 실제로 작동하는 스크립트를 작성하는 방법을 설명해 주시겠습니까? 미리 감사드립니다!
grep=$(which grep)
files=( *."pdf" )
count=$(printf '%d\n' "${#files[@]}")
no=0
skip=${1:-0}
for i in "${files[@]}"; do
((no++))
if [ $skip -gt $no ]; then
continue
fi
echo $no of $count - $(($no*100/$count)) '%'
echo -n "Note for file"'['$i']:'
evince "$i" # -i 3 opens the third page
# use a shortcut to kill evince here
clear
echo $no of $count - $(($no*100/$count)) '%'
echo -n "Note for file"'['$i']:'
read ok
echo $no > .batchview-status
[ -n "$ok" ] && echo "$i" >> notes.txt
[ -n "$ok" ] && echo "$ok" >> notes.txt
done