6 lines
No EOL
134 B
Bash
6 lines
No EOL
134 B
Bash
#!/bin/bash
|
|
|
|
# Wrapper for find command that always includes 2>/dev/null
|
|
# Usage: find+ [normal find arguments]
|
|
|
|
find "$@" 2>/dev/null |