mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2024-12-25 03:08:26 +00:00
16 lines
323 B
Bash
16 lines
323 B
Bash
|
|
# node ./dist/index.js
|
|
# exec /bin/bash
|
|
#!/bin/sh
|
|
|
|
#============ get the file name ===========
|
|
|
|
echo -e "导出表格数据:拖拽想要处理的文件和文件夹到此"
|
|
|
|
read InputDir
|
|
|
|
echo "导出数据"
|
|
|
|
node dist/index.js --engine-version v342 --pinyin --input "${InputDir}"
|
|
|
|
exec /bin/bash |