Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
User Journal

Journal joke_dst's Journal: bash script for ignoring all .*.cmd files

This command finds all directories with .*.cmd files (like all the .o.cmd files generating when building the kernel) and set the svn ignore command on them

svn status | grep "\.cmd" | cut -b8- | cut -d. -f1 | sort | uniq | xargs svn propset svn:ignore '.*.cmd'

This discussion has been archived. No new comments can be posted.

bash script for ignoring all .*.cmd files

Comments Filter:

"A car is just a big purse on wheels." -- Johanna Reynolds

Working...