feat(user/bkots):Optimize with GNU Parallel for executing commands
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 27 May 2022 08:55:02 +0000 (08:55 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Fri, 27 May 2022 08:55:02 +0000 (08:55 +0000)
commit90152692eced87d53ab0c492c35b89928d849870
tree4303d910a01353215039d748b877e06544015c00
parent24eabaf97cd8d1074f6ed96e09d706ae1b0e7a1a
feat(user/bkots):Optimize with GNU Parallel for executing commands

  - Assemble each command and save as string in array; then execute
    array.

  - Use bash function as wrapper to echo and group each command being
    performed along with its stdout/stderr messages.

  - Use regex search of '/.' to find and exclude dotfile paths instead
    of resolving each basename of each parent directory in each path.

  - Use double quotes to handle file names with special characters.

    - Escape out double quotes when they appear in file names.

  - Note: Incrementing major version number due to added dependency of
    GNU Parallel 20210822
user/bkots