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
#Skip from tracking | |
git update-index --skip-worktree <file> | |
#Get back to tracking | |
git update-index --no-skip-worktree <file> |
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/sh | |
URL=https://github.com/vchain-us/vcn/releases/download/v0.7.2/vcn-v0.7.2-darwin-10.6-amd64 | |
echo "Please wait. We are downloading and installing CodeNotary vcn for you..." | |
cd ~ | |
curl --connect-timeout 100 -L $URL >> vcn | |
chmod 777 vcn | |
mv vcn /usr/local/bin/ | |
echo "Done. You can run now: $ vcn" |
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 | |
# Split JSON array to files, use json attribute as filename | |
# | |
# input.json: | |
# [ | |
# {"id":"1", "name":"first"}, | |
# {"id":"1", "name":"second"}, | |
# ... | |
# ] |
OlderNewer