This file contains hidden or 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 | |
| checkFile(){ | |
| FILE=$1 | |
| OTOOL=`which otool` | |
| TAIL=`which tail` | |
| IFS='/' read -ra ADDR <<< "$FILE" | |
| unset APP | |
| for i in "${ADDR[@]}"; do | |
| if [[ ! "${i-}" = $'\n' ]]; then |
This file contains hidden or 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
| ==> /data/dalmatinerfe/log/console.log <== | |
| 2018-07-17 23:29:23.562 [info] <0.659.0> Application lager started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.568 [info] <0.659.0> Application cowboy started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.568 [info] <0.659.0> Application epgsql started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.569 [info] <0.659.0> Application dflow started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.579 [info] <0.659.0> Application ddb_connection started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.590 [info] <0.659.0> Application pgapp started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.590 [info] <0.659.0> Application dqe_idx_ddb started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.591 [info] <0.659.0> Application dqe_fun started on node 'dalmatinerfe@192.168.168.233' | |
| 2018-07-17 23:29:23.591 [info] <0.659.0> Application sqlmig started on node 'dalmatinerfe@192.168.168.233' |
This file contains hidden or 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
| (function () { | |
| 'use strict'; | |
| let BLANKS = [undefined, null, false]; | |
| function simpleLog(type, msg) { | |
| console.log(`[${type}] ${msg}`); // eslint-disable-line no-console | |
| } // returns a function that invokes `callback` only after having itself been | |
| // invoked `total` times | |
| function awaitAll(total, callback) { |
OlderNewer