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 | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
target="${1:-/opt/sublime_merge/sublime_merge}" | |
check_sha() { | |
local sha_valid |
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
// v2 | |
// 파일명 바꾸기 | |
const fs = require('fs'); | |
const path = require('path'); | |
const moment = require('moment'); | |
const dir = 'C:\\Users\\kimhongsu\\Downloads\\test'; | |
const files = fs.readdirSync(dir); | |
files |