Daniel Shahaf <d...@daniel.shahaf.name> writes: >> The workaround is to use: >> >> echo -ne "ignorethis\n" | svn ps svn:ignore -F - . > > By the way, an even simpler workaround in this case is > > svn ps svn:ignore -m $'ignorethis\n' ./
No. In this case -F specifies the property value, not the log message. Something like this may work: svn ps svn:ignore $(echo -ne "ignorethis\n") . but quoting multiple line values can be tricky. -- Philip