Make find_sh.sh cleaner

This commit is contained in:
Timo Schmidt 2023-03-15 18:49:26 +01:00
parent 74d0c6955e
commit 017b264464
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
find . -type f -name "*.sh" | xargs -I{} basename {} | sed 's/\.sh$//g'
find . -type f -name "*.sh" -exec basename {} .sh \;