public marks

PUBLIC MARKS from sylvainulg with tags linux & blog

2015

2012

Transfer only selected file types with rsync | Open Source Technical Blog

(via)
find source -name "*.png" -print0 | rsync -av --files-from=- --from0 ./ ./destination/ or rsync -av --include='*/' --include='*.png' --exclude='*' source/ destination/

2007