ZealOS/src/HomeWrappers.CC

36 lines
922 B
HolyC
Raw Normal View History

2020-02-15 20:01:48 +00:00
//Place this file in /Home and change
//anything you want.
#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 text in all text files.
return Find(needle_str,"/*",fu_flags);
2020-02-15 20:01:48 +00:00
}
public I64 R(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i")
{//Find text and replace in all text files.
return Find(needle_str,"/*",fu_flags,replace_text);
2020-02-15 20:01:48 +00:00
}
public I64 FD(U8 *needle_str,U8 *fu_flags=NULL)
{//Find text in cur dir text files.
return Find(needle_str,"*",fu_flags);
2020-02-15 20:01:48 +00:00
}
public I64 RD(U8 *needle_str,U8 *replace_text=NULL,U8 *fu_flags="+l-i")
{//Find text and replace in cur dir text files.
return Find(needle_str,"*",fu_flags,replace_text);
2020-02-15 20:01:48 +00:00
}
public U0 Cls()
{//Clear terminal. Reminiscent of DOS command of same name.
DocClear;
}
public U0 ZCls()
{//Clear zenith terminal.
Zenith("DocClear;\n");
}