forked from sheetjs/docs.sheetjs.com
17 lines
343 B
Bash
17 lines
343 B
Bash
|
#!/bin/bash
|
||
|
# https://docs.sheetjs.com/docs/demos/net/email/pst
|
||
|
cd /tmp
|
||
|
rm -rf sheetjs-pst
|
||
|
mkdir sheetjs-pst
|
||
|
cd sheetjs-pst
|
||
|
|
||
|
npm init -y
|
||
|
|
||
|
curl -LO https://docs.sheetjs.com/pst/SheetJSPST.js
|
||
|
npm i --save https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz pst-extractor@1.11.0
|
||
|
|
||
|
node --version
|
||
|
node SheetJSPST.js
|
||
|
|
||
|
bun --version
|
||
|
bun SheetJSPST.js
|