mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 00:05:10 +01:00
5 lines
131 B
Bash
Executable File
5 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
# Remove DS_Store stuff and ._* metafiles
|
|
find . -name '*.DS_Store' -type f -delete
|
|
find . -name '._*' -type f -delete
|