STYLE: remove unnecessary stdout, stderr /dev/null redirects

- no stderr redirect needed:
    * 'command -v'

- no stdout/stderr redirect needed:
    * 'rm -f'

STYLE: consistent spacing after redirects
This commit is contained in:
Mark Olesen
2019-11-06 10:44:36 +01:00
committed by Andrew Heather
parent ec7e3c88e4
commit e6dfb39c66
131 changed files with 281 additions and 282 deletions

View File

@ -186,7 +186,7 @@ std::string getLine(const std::string& filename, const std::string& addr)
+ "' -o '"
+ "target module load -f "
+ filename
+ " __TEXT 0x0' 2> /dev/null"
+ " __TEXT 0x0' 2>/dev/null"
+ " | grep LineEntry"
);