You should refer the original page. The all copyrights of these documents belong to them.
- grep :: search a file for a pattern
| #!/bin/bash --posix | |
| # -*- coding:utf-8 -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| #!/bin/bash --posix | |
| # -*- coding:utf-8 -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| //(1)=========================================================<< File Header >>= | |
| /** | |
| * @file c-template_linux_cli_application.c | |
| * @brief <Application meaning> Ver 0.01 | |
| * @author TD | |
| * @date 2020-05-31 | |
| * | |
| * <pre> 2020 TD LICENSED CC0 </pre> | |
| ******************************************************************************/ | |
| //(2)======================================================<< System Include >>= |
You should refer the original page. The all copyrights of these documents belong to them.
| #!/bin/sh | |
| # -*- coding:utf-8 posix -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| #!/bin/sh | |
| # -*- coding:utf-8 posix -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| @startuml | |
| skinparam shadowing false | |
| skinparam monochrome true | |
| skinparam defaultFontName Helvetica | |
| skinparam BackgroundColor transparent | |
| skinparam ActivityBackgroundColor #FFFFFF | |
| skinparam ActivityDiamondBackgroundColor #FFFFFF | |
| skinparam ActorBackgroundColor #FFFFFF | |
| skinparam AgentBackgroundColor #FFFFFF |
| #!/bin/sh | |
| # -*- coding:utf-8 posix -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| #!/bin/bash --posix | |
| # -*- coding:utf-8 -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |
| #!/bin/sh | |
| # -*- coding:utf-8 posix -*- | |
| # === Coding shell scripting Memo ============================================== | |
| # ${<name>#<pattern>} :: matching delete with shortest by forword. | |
| # ${<name>##<pattern>} :: matching delete with longest by forword. | |
| # ${<name>%<pattern>} :: matching delete with shortest by backword. | |
| # ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
| # ${<name>/<before>/<after>} :: replace only first matching. | |
| # ${<name>//<before>/<after>} :: replace all matching. |