https://github.com/vpeti1/gosh
Go Shell
https://github.com/vpeti1/gosh
Last synced: 2 months ago
JSON representation
Go Shell
- Host: GitHub
- URL: https://github.com/vpeti1/gosh
- Owner: VPeti1
- License: gpl-3.0
- Created: 2024-05-16T17:34:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-16T18:39:50.000Z (about 1 year ago)
- Last Synced: 2024-05-17T18:55:08.836Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 6.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GOSH (Go Shell)
GOSH (pun not intended) is a simple shell-like interface implemented in Go. It allows you to interactively write and execute Go code snippets like in a shell.
## Features
- Create and edit Go code files interactively.
- Run and test your Go code directly within the shell.
- Fast mode for quicker code execution.
- List existing code.
- Reset the code file.
- Return to the previous state.
- Option to start over with a clean slate.Usage
Run the built gosh executable.
Follow the interactive prompts
Use commands like LIST, RUN, RESET, and RETURN to manage your code snippets.
(If you arent using fastmode)# Difference between normal mode and fastmode
## Normal mode:
It works like a scripting environment or BASIC
## Fastmode
Works like a regular shell# Requirements
You need goimports and go to use this program