| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | #!/usr/bin/env node |
| 2 | 'use strict'; | ||||
| 3 | const {spawn} = require('child_process'); | ||||
| 4 | const jpegtran = require('.'); | ||||
| 5 | |||||
| 6 | const input = process.argv.slice(2); | ||||
| 7 | |||||
| 8 | spawn(jpegtran, input, {stdio: 'inherit'}) | ||||
| 9 | .on('exit', process.exit); | ||||