This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd ~/Downloads | |
##################################################################### | |
# Update System | |
##################################################################### | |
sudo apt-get update -y && sudo apt-get upgrade -y | |
##################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var fs = require('fs'); | |
var maps = [ | |
fs.readFileSync('./main.xxxx.js.map'), | |
fs.readFileSync('./1.chunk.xxxx.js.map'), | |
fs.readFileSync('./2.chunk.xxxx.js.map'), | |
fs.readFileSync('./3.chunk.xxxx.js.map') | |
]; |