Skip to content
This repository was archived by the owner on Jul 9, 2021. It is now read-only.

Commit b912013

Browse files
committed
Escape properly
1 parent c44aee6 commit b912013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ UNAME := $(shell uname)
33
ifeq ($(UNAME), Linux)
44
DEVICE := $(shell netstat -rn -A inet | grep ^0.0.0.0 | tr ' ' '\n' | tail -n1)
55
else
6-
DEVICE := $(shell netstat -rn -f inet | grep -v "link#" | grep ^default | tr ' ' '\n' | tail -n1)
6+
DEVICE := $(shell netstat -rn -f inet | grep -v "link\#" | grep ^default | tr ' ' '\n' | tail -n1)
77
endif
88

99
start:

0 commit comments

Comments
 (0)