updated app name to 'diskm8'

This commit is contained in:
johnny 2019-12-25 20:42:33 -06:00
parent 086a2da973
commit b605401357
2 changed files with 7 additions and 7 deletions

View File

@ -1,32 +1,32 @@
## Usage examples ## Usage examples
Ingest your disk collection, so dskalyzer can report on them: Ingest your disk collection, so diskm8 can report on them:
``` ```
dskalyzer -ingest C:\Users\myname\LotsOfDisks diskm8 -ingest C:\Users\myname\LotsOfDisks
``` ```
Find Whole Disk duplicates: Find Whole Disk duplicates:
``` ```
dskalyzer -whole-dupes diskm8 -whole-dupes
``` ```
Find Active Sectors duplicates (inactive sectors can be different): Find Active Sectors duplicates (inactive sectors can be different):
``` ```
dskalyzer -as-dupes diskm8 -as-dupes
``` ```
Find Duplicate files across disks: Find Duplicate files across disks:
``` ```
dskalyzer -file-dupes diskm8 -file-dupes
``` ```
Find Active Sector duplicates but only under a folder: Find Active Sector duplicates but only under a folder:
``` ```
dskalyzer -as-dupes -select "C:\Users\myname\LotsOfDisks\Operating Systems" diskm8 -as-dupes -select "C:\Users\myname\LotsOfDisks\Operating Systems"
``` ```

View File

@ -36,7 +36,7 @@ func Get(id int) *Logger {
func NewLogger(id int, app string) *Logger { func NewLogger(id int, app string) *Logger {
if app == "" { if app == "" {
app = "dskalyzer" app = "diskm8"
} }
filename := fmt.Sprintf("%s_%d_%s.log", app, id, fts()) filename := fmt.Sprintf("%s_%d_%s.log", app, id, fts())