hschumann2/TempleOS-Source-Code
0838
1 2//Place this file in /Home and change3//anything you want.4 5#help_index "Cmd Line (Typically)"6 7//These are customized quick commands.8//Feel free to add more or change.9public I64 F(U8 *needle_str,U8 *fu_flags=NULL)10{//Find text in all text files.11 return Find(needle_str,"/*",fu_flags);12}13 14public I64 R(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i")15{//Find text and replace in all text files.16 return Find(needle_str,"/*",fu_flags,replace_text);17}18 19public I64 FD(U8 *needle_str,U8 *fu_flags=NULL)20{//Find text in cur dir text files.21 return Find(needle_str,"*",fu_flags);22}23 24public I64 RD(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i")25{//Find text and replace in cur dir text files.26 return Find(needle_str,"*",fu_flags,replace_text);27}28 