Spaces:
Sleeping
Sleeping
File size: 317 Bytes
d8d14f1 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Create the new directory if it doesn't exist
sudo mkdir -p /artifacts_logs
# Find all .log files in the root directory and its subdirectories
find / -name "*.log" -print0 | while IFS= read -r -d '' file; do
# Use sudo to move the file to the new directory
sudo mv "$file" /artifacts_logs/
done |