Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

self-documenting makefile

.PHONY: help

help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "33[36m%-30s33[0m %s
", $$1, $$2}'

# All rules with double-hash comments will be automatically displayed in the make help rule
newrule: ## This is what will show up for this rule's help
	echo Hello World
Comment

self documenting makefile

.PHONY: help

help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "33[36m%-30s33[0m %s
", $$1, $$2}'
Comment

PREVIOUS NEXT
Code Example
Shell :: command to delete a directory in linux 
Shell :: install cockroachdb linux 
Shell :: comments in linux 
Shell :: how compare 2 file size in bash 
Shell :: linux date command live update 
Shell :: wsl linux compress siez 
Shell :: Flutter - additional setup for linux 
Shell :: pip install pytorchvideo_trainer 
Shell :: go mod donwload from github 
Shell :: add platform toolchain to linux 
Shell :: imapgrab nodename nor servname provided, or not known 
Shell :: https://cloud.google.com/shell/docs/using-web-preview#previewing_the_application 
Shell :: install fzf redhat 8 
Php :: Composer is operating significantly slower than normal because you do not have the PHP curl extension enabled 
Php :: tinker lost color 
Php :: laravel back button 
Php :: get templete uri 
Php :: destroy session codeigniter 3 
Php :: do_shortcode 
Php :: laravel images mimetypes validatiion 
Php :: php wait 
Php :: ReflectionException: Class MagentoFrameworkAppHttpInterceptor does not exist in 
Php :: storage image not showing in laravel 
Php :: get all routes laravel 
Php :: debug graphql wordpress 
Php :: laravel run php server by ipv4 
Php :: laravel debugbar 
Php :: php password validation preg_match 
Php :: enqueue wordpress 
Php :: wpml get translated post id 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =