4 lines
155 B
Bash
Executable File
4 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
find ~/.vim/undodir/ -maxdepth 1 -mindepth 1 -type f -mtime +180 -delete
|
|
find ~/.vim/view/ -maxdepth 1 -mindepth 1 -type f -mtime +180 -delete
|