Skip to content

Instantly share code, notes, and snippets.

View bushev's full-sized avatar

Yury Bushev bushev

View GitHub Profile
@bushev
bushev / script.js
Created March 19, 2020 19:50
Remove duplicated files from Moments (Synology NAS)
// Very fast-coded deduplication utility. It parses standard "Storage Analyzer" report and moves duplicated files to a separate folder.
// Requires "npm i csv-parse 'move-file"
'use strict';
const path = require('path')
const fs = require('fs')
const parse = require('csv-parse/lib/sync')
const moveFile = require('move-file');