I have a directory (with subdirectories), of which I want to find all files that have a \".ipynb\" extension. But I want the \'find\' command to just return me these filenam
Here's a simple solution:
find . -type f -iname "*.ipynb" | sed 's/\.ipynb$//1'