mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 06:22:12 +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
|