Copyright (c) 2014 Rawand Fatih, Licensed under MIT License (MIT)
Shell script to merge and minify JavaScript file/files. You can minify a single file, or merge and minify multiple files.
For minifing the JS, this script uses a minifier from javascript-minifier.com
- You can use the command with a sequence of files and it will merge and minifiy all the files in order of the argument sequence.
- Two files will be created (script.js and script.min.js).
- Example:
// Ouputs 'script.js' and 'script.min.js'
sh RjsMinifier.sh test.js test2.js
// You can also minify a single file
sh RjsMinifier.sh test.js
- You can specify parameters, once you use parameters the -n and -f arguments are required.
- Params:
- [ -n ] To specify the file name.
- [ -f ] The list of files. It SHOULD be wrapped in double quotes [ " ].
- [ -r ] To remove the merged (but not minified) filed.
- Examples:
- Params:
// This outputs 'king.js' and 'king.min.js'
sh RjsMinifier.sh -n king -f "test.js test2.js"
// This outputs only the minified file, 'queen.min.js'
sh RjsMinifier.sh -r -n queen -f "test.js test2.js"
// You can also use if for single files, outputs 'prince.min.js'
sh RjsMinifier.sh -r -n prince -f "test.js"
// You can also specify paths along the file names
// This outputs princess.js and princess.min.js in the home folder.
sh RjsMinifier.sh -n "~/princess" -f "test.js test2.js"
Make sure you have curl
installed before trying to use this.
To install curl
do as:
sudo apt-get install curl
It's always better and cleaner to create an alias for the shell script so that you can use it easier.
// Use the path of your script instead.
// It's good to have a folder for all the scripts in one place.
alias jscomp='~/bashscripts/RjsMinifier.sh'
You can also add this alias initialization to your .bash_profile
on Mac, or .bashrc
on Linux so that the alias will be created each time you use terminal.
Do the usual GitHub fork and pull request dance. Add yourself to the contributors section of this file too if you want to.
- Rawand Fatih ([email protected])
## License
The MIT License (MIT)
Copyright (c) 2014 Rawand
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.