blob: 2adf0cde574a8b2d92de1992dec6f821af3b074e (
plain) (
blame)
1
2
|
rem findadd - find files which are not marked read only, in children of current dir
(walk /d . ls -lq %%s) | qgrep -yv "build. .obj .lib .dll .exe .map" | qgrep -vB -e "d--" | qgrep -v -e "--r"
|