2.0.1 • Published 5 months ago

englishell v2.0.1

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

englishell

Execute shell commands by providing human readable (free text) instructions, in plain english.

Powered by ChatGPT.

Warning: Review the suggested commands before executing them.

Try it out

$ npx englishell print hello world
# Suggests:
echo "hello world"
$ npx englishell print the size in megabytes of the current directory
# Suggests:
du -sh .

Install

Install globally using npm:

$ npm i -g englishell

Now you can use it using global shell command englishell:

$ englishell show current time, without date
# Suggests:
date +"%T"
$ englishell what year is it
# Suggests:
date +%Y

More Examples

$ englishell kill the process that listens to port 8080
# Suggests:
lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9
$ englishell generate a loud sound
# Suggests:
afplay /System/Library/Sounds/Basso.aiff
$ englishell generate a beep sound
# Suggests:
echo -e "\a"
$ englishell print current git branch
# Suggests:
git branch --show-current
$ englishell show the sizes of all folders in parent of the current directory
# Suggests:
du -sh ../*
$ englishell how long the system has been running
# Suggests:
uptime
$ englishell generate strong password
# Suggests:
openssl rand -base64 14
2.0.1

5 months ago

2.0.0

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago