mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-19 03:25:44 +00:00
Merge pull request #31 from WebDragon/patch-1
Adding additional usefuls
This commit is contained in:
commit
d7563772e0
@ -45,3 +45,8 @@ command -v ${program} >/dev/null 2>&1 || error "${program} not installed"
|
|||||||
# Please note that 2>&1 goes after
|
# Please note that 2>&1 goes after
|
||||||
my_command > command-stdout-stderr.txt 2>&1
|
my_command > command-stdout-stderr.txt 2>&1
|
||||||
my_command > /dev/null 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…
Reference in New Issue
Block a user