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
If there's no occurrence of this ".ipynb" string on any file name other than a suffix, then you can try this simpler way using tr:
tr
find . -type f -iname "*.ipynb" -print | tr -d ".ipbyn"