parent
8c68c1837d
commit
0037928b2f
2 changed files with 23 additions and 1 deletions
@ -0,0 +1,23 @@ |
||||
#!/usr/bin/env bash |
||||
#////////////////////////////////////////////////////////////// |
||||
#// ____ // |
||||
#// | __ ) ___ _ __ ___ _ _ _ __ ___ _ __ _ __ ___ // |
||||
#// | _ \ / _ \ '_ \/ __| | | | '_ \ / _ \ '__| '_ \ / __| // |
||||
#// | |_) | __/ | | \__ \ |_| | |_) | __/ | | |_) | (__ // |
||||
#// |____/ \___|_| |_|___/\__,_| .__/ \___|_| | .__/ \___| // |
||||
#// |_| |_| // |
||||
#////////////////////////////////////////////////////////////// |
||||
#// // |
||||
#// Script, 2021 // |
||||
#// Created: 01, October, 2021 // |
||||
#// Modified: 01, October, 2021 // |
||||
#// file: - // |
||||
#// - // |
||||
#// Source: https://askubuntu.com/a/271797/971804 // |
||||
#// OS: ALL // |
||||
#// CPU: ALL // |
||||
#// // |
||||
#////////////////////////////////////////////////////////////// |
||||
|
||||
find . -maxdepth 1 -iname "*.jpg" | xargs -P 8 -L1 -I{} convert -resize 50% "{}" _resized/"{}" |
||||
|
Loading…
Reference in new issue