Given a prompt in plain English generate a one-line BASH command that completes the task.
...more
$3.99
Get prompt
After purchasing, you will gain access to the prompt file which you can use with GPT or the app builder. You'll receive 20 free generation credits with this purchase. By purchasing this prompt, you agree to our terms of service.
Over 1 month ago
Prompt Details
Model
Completion - GPT-3 (text-davinci-002)
Token size
239 ($0.00480 / call)
Example input
# Rename all items in directory to lowercase
$
Example output
for f in *; do mv "$f" "$(echo $f | tr '[:upper:]' '[:lower:]')"; done