4 lines
155 B
Plaintext
4 lines
155 B
Plaintext
|
#!/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
|