There are easy and there are hard unix shell commands to remember, nobody knows them all.
Why not use ChatGPT to translate plain english instructions into executable shell commands.<p>Here are a few examples how `englishell` CLI can be used:<p>$ englishell kill the process that listens to port 8080
->
lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9<p>$ englishell print current git branch
->
git branch --show-current<p>$ englishell show the sizes of all folders in parent of the current directory
->
du -sh ../*<p>$ englishell how long the system has been running
->
uptime<p>$ englishell generate strong password
->
openssl rand -base64 14