mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
5 lines
93 B
Bash
5 lines
93 B
Bash
#!/bin/sh
|
|
"${@}" 2>&1 | while read -r LINE; do
|
|
logger -t "$(basename "${1}")" "$LINE";
|
|
done
|