-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclear_notebooks.sh
executable file
·51 lines (42 loc) · 1.03 KB
/
clear_notebooks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# List of directories to skip
SKIP_DIRS=("ipynb_checkpoints")
# Function to check if a directory should be skipped
should_skip() {
local dir="$1"
for skip_dir in "${SKIP_DIRS[@]}"; do
if [[ "$dir" == *"$skip_dir"* ]]; then
return 0
fi
done
return 1
}
# Function to clear outputs of Jupyter notebooks
clear_notebook_outputs() {
local dir="$1"
for file in "$dir"*.ipynb; do
if [[ -f "$file" ]]; then
echo "Clearing outputs in $file"
jupyter nbconvert --clear-output --inplace "$file" &
fi
done
wait
}
# Recursively process directories
process_directory() {
local dir="$1"
if should_skip "$dir"; then
echo "Skipping directory $dir"
return
fi
clear_notebook_outputs "$dir"
for subdir in "$dir"/*/; do
if [[ -d "$subdir" ]]; then
process_directory "$subdir"
fi
done
}
# Start processing from the current directory
process_directory "$(pwd)"
# Allow push to proceed
exit 0