Move the contents of crystal.md into commands.md

This commit is contained in:
Donovan Glover 2017-11-20 18:35:32 -05:00
parent fdbc0e9614
commit b428cba742
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D
2 changed files with 9 additions and 8 deletions

View File

@ -87,6 +87,15 @@ These programs are installed on top of the base system.
Note that you can run multiple servers on different ports through Jekyll and other software.
### Crystal
- Build and run the program directly: `crystal <file>`
- Compile the program to binary: `crystal build <file>`
- Add `--progress` or `-p` to show build progress
- Add `--release` when you're building the release version (takes longer)
- Add `--no-debug` to increase the build speed (useful for dev builds)
- Add `-o` to specify the location of the output file
### Dealing with Archives
- Zip all files in a directotry: `zip -r <zip_name> <directory>`

View File

@ -1,8 +0,0 @@
# Crystal
- Build and run the program directly: `crystal <file>`
- Compile the program to binary: `crystal build <file>`
- Add `--progress` or `-p` to show build progress
- Add `--release` when you're building the release version (takes longer)
- Add `--no-debug` to increase the build speed (useful for dev builds)
- Add `-o` to specify the location of the output file