add-bash-attachment
v0.1.1
Published
A Node.js utils/module be used for add attachment files into bash script.
Downloads
2
Readme
add-bash-attachment
A Node.js utils/module be used for add attachment files into bash script.
Install
npm install add-bash-attachment --global
Usage
As command line tools:
add-bash-attachment --input raw.sh \
--file signs.key --file sources.list \
--output install.sh
As a Node.js module:
const { addAttachments } = require('add-bash-attachment');
addAttachments({
inputFile: 'raw.sh',
attachments: [{
name: 'data.bin',
content: fs.readFileSync('data.bin'),
}]
}).then(newScript => {
console.log(newScript);
}).catch(error => {
console.error(error);
});
Principle
Prepend bash function get_bash_attachment
and attachment contents as base64 string.