Instant coding answers via the command line in python
![](https://www.deeplearningdaily.com/wp-content/uploads/2021/08/instant-coding-answers-via-the-command-line-in-python_612d57fa87184-375x210.jpeg)
instant coding answers via the command line
Sherlock, your neighborhood command-line sloth sleuth.
Are you a hack programmer? Do you find yourself constantly Googling for how to do basic programming tasks?
Suppose you want to know how to format a date in bash. Why open your browser and read through blogs (risking major distraction) when you can simply stay in the console and ask howdoi:
$ howdoi format date bash > DATE=`date +%Y-%m-%d`
howdoi will answer all sorts of queries:
$ howdoi print stack trace python
> import traceback
>
> try:
>