File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ # //////////////////////////////////////////////////////////////
3+ # // ____ //
4+ # // | __ ) ___ _ __ ___ _ _ _ __ ___ _ __ _ __ ___ //
5+ # // | _ \ / _ \ '_ \/ __| | | | '_ \ / _ \ '__| '_ \ / __| //
6+ # // | |_) | __/ | | \__ \ |_| | |_) | __/ | | |_) | (__ //
7+ # // |____/ \___|_| |_|___/\__,_| .__/ \___|_| | .__/ \___| //
8+ # // |_| |_| //
9+ # //////////////////////////////////////////////////////////////
10+ # // //
11+ # // Script, 2021 //
12+ # // Created: 01, October, 2021 //
13+ # // Modified: 01, October, 2021 //
14+ # // file: - //
15+ # // - //
16+ # // Source: https://askubuntu.com/a/271797/971804 //
17+ # // OS: ALL //
18+ # // CPU: ALL //
19+ # // //
20+ # //////////////////////////////////////////////////////////////
21+
22+ find . -maxdepth 1 -iname " *.jpg" | xargs -P 8 -L1 -I{} convert -resize 50% " {}" _resized/" {}"
23+
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ echo "Clear journalctl: OK"
3939sudo find ~ /.cache/ -type f -atime +3 -delete
4040echo " Clear cache: OK"
4141
42- sudo find ~ /Téléchargements/ -type f -atime +15 -delete || true
4342sudo find ~ /Downloads/ -type f -atime +15 -delete || true
4443echo " Clear Downloads: OK"
4544
You can’t perform that action at this time.
0 commit comments