Monday, 14 February 2011

Recursively find all files and convert to unix format (excluding those in svn dirs)

Ref : http://snippets.dzone.com/posts/show/108

find . -type f \! -path "*svn*" -exec dos2unix {} \;

After svn checkout you should run this command in your local directory.

No comments:

Post a Comment

Using Handlebar Prompt in Semantic Kernal

> dotnet add package Microsoft.SemanticKernel.PromptTemplates.Handlebars --version 1.30.0 using Microsoft . SemanticKernel ; using Micr...