Skip to content

Commit

Permalink
Fix find command to show second level folders that have spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dngray committed Nov 3, 2019
1 parent 37e9d92 commit f7ef204
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/manual.xml.head
Expand Up @@ -9575,9 +9575,9 @@ subjectrx '\[[^]]*\]:? *' '%L%R'
<note>
<para>
When using Maildir, you don't have to manually specify all your mailboxes. You can use this command instead:
<screen>
mailboxes `find ~/.mail/ -type d -name cur | sed 's:/cur/*$::' | tr '\n' ' '`
</screen>
<screen>
mailboxes `find ~/.mail/ -type d -name cur | sort | sed -e 's:/cur/*$::' -e 's/ /\\ /g' | tr '\n' ' '`
</screen>
</para>
</note>
</sect2>
Expand Down

0 comments on commit f7ef204

Please sign in to comment.