Merge pull request #31 from WebDragon/patch-1

Adding additional usefuls
pull/33/head
Igor Chubin 6 years ago committed by GitHub
commit d7563772e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -45,3 +45,8 @@ command -v ${program} >/dev/null 2>&1 || error "${program} not installed"
# Please note that 2>&1 goes after
my_command > command-stdout-stderr.txt 2>&1
my_command > /dev/null 2>&1
# Redirect stdout and stderr of cmd1 to cmd2
cmd1 |& cmd2
# Convert spaces to underscores in filenames
for name in *\ *; do mv -vn "$name" "${name// /_}"; done

Loading…
Cancel
Save