Developers' side bar Selected categories Edit Links |
Devel /
WindowsInstallerNotesCategories: Development, Windows installer << | Page list | >>Miscellanous unsorted notes regarding the windows installer. Useful code snippets for getting statistics on the codeFinding the filesFinding J's NSIS files cd .../installer find ../../ . -iname "*.ns?" -not -path "*/LyXWinInstaller/*" Finding U's NSIS files cd .../installer find LyXWinInstaller -iname "*.ns?" Finding only code linesfind LyXWinInstaller -iname "*.ns?" -exec cat {} \; | sed -e ' s/^\([ \t]\+\)//' | grep -v '^#' | grep -v '^$' > Us_code.txt Time history of the installers according to Uwe
Category: Development, Windows installer |