Skip to content

Commit

Permalink
o20
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Sep 25, 2024
1 parent 023ddef commit 9edfc11
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test_common.in
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,18 @@ echo "@@@FP_ISMSVC=${FP_ISMSVC}"
echo "@@@FP_ISOSX=${FP_ISOSX}"
if test "x${FP_ISMSVC}" = xyes || test "x${FP_ISOSX}" = xyes ; then
#echon() { echo "$@" | tr -d '\r\n' ; }
echo "@@@case true"
echon() {
echo "$@" | tr -d '\r\n'
}
else
alias echon='echo -n'
echo "@@@case false"
#alias echon='echo -n'
echon() {
echo -n "$@"
}
fi

type -f echon
# Test for filter availability
avail() {
if test yes = `${execdir}/../ncdump/ncfilteravail $1` ; then return 0 ; else echo "filter $1 not available" ; return 1; fi
Expand Down

0 comments on commit 9edfc11

Please sign in to comment.