0.1.1 ā€¢ Published 6 years ago

add-bash-attachment v0.1.1

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
6 years ago

add-bash-attachment

Build Status

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.

Author

šŸ‘Øā€šŸ’» @hangxingliu (Liu Yue)

License

GPL-3.0

0.1.1

6 years ago

0.1.0

6 years ago