diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -15,6 +15,21 @@ echo test line | c+ ``` or with a custom symbol: ``` -echo test line | c+ \# +echo test line | c+ "#" > #test line +``` + +## c- +Same as `c+.sh` but removes a comment from the beginning of the line. By +default removes a double slash (//) but can be changed the behaviour passing +the symbol you want to remove. +For example: +``` +echo //test line | c- +> test line +``` +or with a custom symbol: +``` +echo "#test line" | c- "#" +> test line ```
\ No newline at end of file |