mirror of https://github.com/minexew/Shrine.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
793 B
26 lines
793 B
//Change anything you want in this |
|
//acct file or others. |
|
|
|
#help_index "Cmd Line (Typically)" |
|
|
|
//These are customized quick commands. |
|
//Feel free to add more or change. |
|
public I64 F(U8 *needle_str,U8 *fu_flags=NULL) |
|
{//Find (Grep) all text files. |
|
return Grep(needle_str,"/*",fu_flags); |
|
} |
|
|
|
public I64 R(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i") |
|
{//Find (Grep) and replace string with string in all files. |
|
return Grep(needle_str,"/*",fu_flags,replace_text); |
|
} |
|
|
|
public I64 FD(U8 *needle_str,U8 *fu_flags=NULL) |
|
{//Find (Grep) text files in cur dir. |
|
return Grep(needle_str,"*",fu_flags); |
|
} |
|
|
|
public I64 RD(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i") |
|
{//Find (Grep) and replace string with string in cur dir. |
|
return Grep(needle_str,"*",fu_flags,replace_text); |
|
}
|
|
|