Skip to content

Instantly share code, notes, and snippets.

@srividya22
Last active December 20, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srividya22/1c927855580bb27752eba7c99ea40053 to your computer and use it in GitHub Desktop.
Save srividya22/1c927855580bb27752eba7c99ea40053 to your computer and use it in GitHub Desktop.
One liners Find
Identify a directory which does not contain a particular file
find base_dir -mindepth 2 -maxdepth 2 -type d '!' -exec test -e "{}/cover.jpg" ';' -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment