Skip to content

Instantly share code, notes, and snippets.

@utamadonny
Last active August 4, 2021 13:50
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 utamadonny/c7f21fc2b3cf763439fa410a7f6d6865 to your computer and use it in GitHub Desktop.
Save utamadonny/c7f21fc2b3cf763439fa410a7f6d6865 to your computer and use it in GitHub Desktop.
Random Linux Note
  • Jupyter kernel place. Delete unused kernel
/home/donny/.local/share/jupyter/kernels
  • Delete file with conditional string and find it through systems
sudo find / -name "*opencv*" -exec rm -i {} \;
  • Delete file based on string

Example your have file:

    az1
    az2
    az213123
    Exa
    Exa2

comand

rm -rf az* Ex*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment