Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
b7799dc731d9ccea831ba84920f4be5d8c1a5ec4
Branches
master
Files
Commits
Log
Graph
Stats
ramdisk.git
src
command
watch.js
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 9
Mode: javascript
Binary: false
Hang on, we reloading big blames...
a7998c18
const commander = require('commander'); // install commander
f9a09ec6
.command('watch <uid>')
a7998c18
.description(` Watch the p3x-ramdisk `)
600f492e
.option('-w, --watch [milliseconds]', 'The time for watching, default is 1000 milliseconds')
a7998c18
// .option('-d, --dry', 'Do not actually remove packages, just show what it does')
f9a09ec6
.action(async function (uid, options) {
a7998c18
const watch = require('../index').watch; try {
f9a09ec6
await watch({ uid: uid }, options);
a7998c18
} catch(e) { console.error(e.message); process.exit(1); } }) ;