ZealOS/HomeWrappers.HC
xmm15 70a677b281 vboxmnt.sh
Added Cls, new tasks' default name is "Terminal"
2020-02-15 14:24:48 -06:00

32 lines
No EOL
859 B
HolyC
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//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);
}
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);
}
public I64 FD(U8 *needle_str,U8 *fu_flags=NULL)
{//Find text in cur dir text files.
return Find(needle_str,"*",fu_flags);
}
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);
}
public U0 Cls()
{//Clear terminal. Reminiscent of DOS command of same name.
DocClear;
}