This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # If you accidentally deleted files from a subversion working copy, subversion marks them missing instead of | |
| # deleted. This command will delete them correctly from the repository. | |
| svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' ) |