Skip to content

Instantly share code, notes, and snippets.

@wk989898
Last active March 13, 2024 06:00
Show Gist options
  • Save wk989898/b55bb19960bcd795bd638b54ac8d1ab7 to your computer and use it in GitHub Desktop.
Save wk989898/b55bb19960bcd795bd638b54ac8d1ab7 to your computer and use it in GitHub Desktop.
useful bash command
# batch kill process
ps aux | grep * | awk '{print $2}' | xargs kill -9
# remove tensorboard files
find ./log -type f -size -1k -exec rm -r {} + && find ./log -empty -exec rm -r {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment