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
| lsof -i:$1 | grep LISTEN | awk '{print $2}' | xargs kill -9 | |
| echo "port $1 has been terminated" |
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
| ps -ef | grep jboss | grep -v grep | awk '{print $2}' | xargs kill -9 |
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
| on run {input, parameters} | |
| tell application "Terminal" | |
| if not (exists window 1) then reopen | |
| activate | |
| do script "test1" in window 1 | |
| delay 2 | |
| close window 1 | |
| end tell | |
| return input |
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 flattenMyArr(nArr) { | |
| for (let i = 0; i < nArr.length; i++) { | |
| if (Array.isArray(nArr[i])) { | |
| flattenMyArr(nArr[i]) | |
| } else { | |
| flatArr.push(nArr[i]) | |
| } | |
| } | |
| return flatArr; | |
| } |
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
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "cmd+k cmd+c", | |
| "command": "editor.action.addCommentLine", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+k cmd+c", | |
| "command": "-editor.action.addCommentLine", |
OlderNewer