Developers' side bar Selected categories Edit Links |
Devel /
WindowsInstallerNotesCategories: Development, Windows installer << | Page list | >>Miscellanous unsorted notes regarding the windows installer. Table of contents (hide) 1. Useful code snippets for getting statistics on the code1.1 Finding 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?" 1.2 Finding only code linesfind LyXWinInstaller -iname "*.ns?" -exec cat {} \; | sed -e ' s/^\([ \t]\+\)//' | grep -v '^#' | grep -v '^$' > Us_code.txt 2. Time history of the installers according to Uwe
Category: Development, Windows installer |