- httpie使っていたら,anacondaで以下のエラーが出ていてイヤになったので捨てた.
dyld: Library not loaded: @executable_path/../.Python
Referenced from: /usr/local/aws/bin/python
Reason: image not found
Abort trap: 6
| #!/bin/sh | |
| # Goのpecoを使って,シェルスクリプトを簡単に選択する方法を作った | |
| set -e # stop when an error happens | |
| set -x # show commands in strderr before execute it | |
| COMMANDS=$(cat <<'__EOT__' | |
| ls | |
| pwd |
2017 Pacific Division Meeting: Meeting Program - The American Philosophical Association
| ### https://raw.github.com/github/gitignore/26a147d00d26a47389bc28408afe1ee62bd78387/ruby.gitignore | |
| *.gem | |
| *.rbc | |
| /.config | |
| /coverage/ | |
| /InstalledFiles | |
| /pkg/ | |
| /spec/reports/ | |
| /spec/examples.txt |
| vendor/bundle | |
| .bundle/config |
| #!/bin/bash | |
| # trap ctrl-c and call ctrl_c() | |
| trap ctrl_c INT | |
| function ctrl_c() { | |
| echo "** Trapped CTRL-C" | |
| exit | |
| } | |
| file=*.json | |
| for TXT in ${file} |