Skip to content

Commit

Permalink
add cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
meandmytram committed Aug 14, 2024
1 parent dda4ba8 commit df71b24
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/decoding/cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# Delete all files ending with .out
find . -type f -name "*.out" -exec rm -f {} \;

# Move all files ending with .npy to the "data" folder
mkdir -p data
find . -type f -name "*.npy" -exec mv {} data/ \;

echo "All .out files deleted and .npy files moved to the 'data' folder."

0 comments on commit df71b24

Please sign in to comment.