소스 검색

Fix: remove extra `\` from dynamic mailboxes

Remove extra escaping from `mutt`'s mailboxes dynamic generator.
Apparently, backslash expansion inside the backticks context
(`\`shell-command\``) is not performed.

Fixes #769.
pull/771/head
PRESFIL 3 년 전
committed by GitHub
부모
커밋
6c74c9e095
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      bin/mw

+ 1
- 1
bin/mw 파일 보기

@@ -226,7 +226,7 @@ getboxes() { if [ -n "${force+x}" ] ; then
idnum=$((idnum + 1))
[ $idnum -eq $x ] || break
done
toappend="mailboxes \`mdir=$maildir/$fulladdr/; find \$mdir -mindepth 1 -type d -name cur | sed -e 's:/cur\$:\":' -e \"s:\$mdir:\\\"=:\" | sort | tr '\\\n' ' '\`"
toappend="mailboxes \`mdir=$maildir/$fulladdr/; find \$mdir -mindepth 1 -type d -name cur | sed -e 's:/cur\$:\":' -e \"s:\$mdir:\\\"=:\" | sort | tr '\\n' ' '\`"
}

finalize() { echo "$toappend" >> "$accdir/$fulladdr.muttrc"


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