You've already forked httpie-cli
mirror of
https://github.com/httpie/cli.git
synced 2025-08-10 22:42:05 +02:00
Use grep -E
instead of egrep
(#1436)
This commit is contained in:
2
Makefile
2
Makefile
@@ -34,7 +34,7 @@ default: list-tasks
|
|||||||
list-tasks:
|
list-tasks:
|
||||||
@echo Available tasks:
|
@echo Available tasks:
|
||||||
@echo ----------------
|
@echo ----------------
|
||||||
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
|
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | grep -E -v -e '^[^[:alnum:]]' -e '^$@$$'
|
||||||
@echo
|
@echo
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user