First commit

Wrapper to exclude error messages
This commit is contained in:
Sebastian Mondial 2025-06-15 12:39:18 +00:00
parent 8786845fb2
commit ca789a211b

6
find+ Normal file
View file

@ -0,0 +1,6 @@
#!/bin/bash
# Wrapper for find command that always includes 2>/dev/null
# Usage: find+ [normal find arguments]
find "$@" 2>/dev/null