Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Shell Examples

json-cli "list files in current directory"
json-cli "Find child processes in the 3000–4000 range in Git Bash"
json-cli "Check disk usage and show top 10 largest files in current directory"
json-cli "Kill all processes using port 3000"
json-cli "Find all JavaScript files modified in the last 7 days"
json-cli "Compress all log files older than 30 days into a tar.gz archive"

Docker Examples

json-cli "Build a Docker image from the current directory and run it"
json-cli "Pull nginx image, run a container, and show running containers"
json-cli "Stop all running containers and remove them"
json-cli "Show all containers, their logs, and remove stopped containers"
json-cli "Build image from Dockerfile, tag it, and push to registry"
json-cli "Execute command in running container and show the output"
json-cli "Clean up: remove all stopped containers and unused images"
json-cli "Pull latest image, stop existing container, and restart with new image"
json-cli "Show running containers, check their resource usage, and display logs"

File System Examples

json-cli "list files in current directory"
json-cli "Create a new directory called 'project' and run install into it"
json-cli "Create multiple nested directories: src/components/ui"
json-cli "Copy all JavaScript files from src to dist directory"
json-cli "Move all log files to logs directory and rename them with timestamp"
json-cli "Create empty files: index.js, styles.css, README.md"
json-cli "Read package.json and display its contents"
json-cli "Remove all temporary files and clean up node_modules"
json-cli "Backup important files by copying them to backup directory"
json-cli "Create project structure with folders: src, tests, docs, build"

Git Examples

json-cli "Check git status"
json-cli "Add all files, commit with message 'feat: add multi-intent support', then push"
json-cli "Run tests, check git diff, then git add and commit with message 'fix: catalog types'"
json-cli "Install deps, run typecheck, run tests, build, git add, commit with message 'ci: local pipeline passed', push"