https://github.com/wingjay/hacker_scripts
My personal hacker scripts (Shell + Python + NodeJS script)
https://github.com/wingjay/hacker_scripts
Last synced: 8 months ago
JSON representation
My personal hacker scripts (Shell + Python + NodeJS script)
- Host: GitHub
- URL: https://github.com/wingjay/hacker_scripts
- Owner: wingjay
- Created: 2017-08-18T09:23:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-26T06:52:43.000Z (over 7 years ago)
- Last Synced: 2025-10-04T21:39:38.144Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.82 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hacker_scripts of wingjay
## Run Shell script
1. create .sh file
2. `chmod +x your.sh`
3. Edit ~/.zshrc file, add `export PATH=$PATH:~/hacker_script`; source ~/.zshrc
#### json parser
`brew install jq`
https://stedolan.github.io/jq/tutorial/
## Run Python script
1. python `virtual-env` activate (python2/python3)
## Run Node js script
1. install Node.js: `brew install node; node -v; brew install npm;`
2. install puppeteer
```
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm i puppeteer
```
3. `node your.js`