소스 검색

Use logging

tags/v1.3
Nico Rey 4 년 전
부모
커밋
a059e400c1
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      test_reception.sh

+ 6
- 6
test_reception.sh 파일 보기

@@ -1,13 +1,17 @@
#!/bin/bash

## import common lib
. "$HOME/.noaa.conf"
. "$NOAA_HOME/common.sh"

if [ -z "$1" ]; then
echo "Usage: $0 <frequency>. Example: $0 90.3"
log "Usage: $0 <frequency>. Example: $0 90.3" "ERROR"
exit 1
fi

command_exists() {
if ! command -v "$1" &> /dev/null; then
echo "Required command not found: $1" "ERROR"
log "Required command not found: $1" "ERROR"
exit 1
fi
}
@@ -15,10 +19,6 @@ command_exists() {
command_exists "sox"
command_exists "socat"

## import common lib
. "$HOME/.noaa.conf"
. "$NOAA_HOME/common.sh"

IP=$(ip route | grep "link src" | awk {'print $NF'})

if pgrep "rtl_fm" > /dev/null


불러오는 중...
취소
저장