6 lines
74 B
Plaintext
6 lines
74 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
function g_logger {
|
||
|
cat <<< $@ | logger -t "$g_syslogtag"
|
||
|
}
|