1
0
forked from extern/nix-config

Add jekyll commands to commands.md

This commit is contained in:
Donovan Glover 2017-11-20 18:32:08 -05:00
parent 4a162a00e1
commit fdbc0e9614
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

View File

@ -78,6 +78,15 @@ These programs are installed on top of the base system.
- Open a webpage in a new tab: `waterfox --new-tab <url>`
- Search for a specific term: `waterfox --search <term>`
### Jekyll
- Start a server and monitor it for changes (useful for development): `jekyll serve`
- Start a server and detach it from the current shell: `jekyll serve --detach`
- Terminate a jekyll server that was detached from the shell: `kill -9 <pid>`
- Terminate all jekyll servers: `pkill -f jekyll`
Note that you can run multiple servers on different ports through Jekyll and other software.
### Dealing with Archives
- Zip all files in a directotry: `zip -r <zip_name> <directory>`