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
Siori@Siori-no-MacBook-Air:~/code/git_akb428/chino (master)$ brew install iftop | |
==> Downloading http://www.ex-parrot.com/pdw/iftop/download/iftop-1.0pre4.tar.gz | |
######################################################################## 100.0% | |
==> ./configure --prefix=/usr/local/Cellar/iftop/1.0pre4 --mandir=/usr/local/Cellar/iftop/1.0pre4/share/man | |
==> make install | |
==> Caveats | |
iftop requires superuser privileges. You can either run the program | |
via `sudo`, or change its ownership to root and set the setuid bit: | |
$ sudo chown root:wheel /usr/local/Cellar/iftop/1.0pre4/sbin/iftop | |
$ sudo chmod u+s /usr/local/Cellar/iftop/1.0pre4/sbin/iftop |
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
/**************************************************************** | |
* Sudoku Solver | |
* | |
* Translated into Javascript from original code in C++ | |
* by Lee Hsien Loong | |
* The MIT License (MIT) | |
* Copyright (c) 2015 Vivian Balakrishnan | |
* | |
* | |
****************************************************************/ |
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 | |
if [[ $# -eq 0 ]] ; then | |
echo "Usage: `basename "$0"` <Kibana-URL> [noauth]" | |
echo "Example: `basename "$0"` http://localhost:5601" | |
exit 1 | |
fi | |
AUTH="" | |
if [[ "$2" != "noauth" ]]; then |