summaryrefslogtreecommitdiff
path: root/Userland/Utilities/cat.cpp
AgeCommit message (Collapse)Author
2021-11-28Everywhere: Use default execpromises argument for Core::System::pledgeBrian Gianforcaro
2021-11-28LibCore+cat: Switch Core::System::read/write to take a Span of bytesBrian Gianforcaro
In the spirit of the Core::System name space having "modern" facades for classically C functions / Kernel interfaces, it seems appropriate that we should take Span's of data instead of raw pointer + length arguments.
2021-11-27cat: Remove accidentally-committed unused macroAndreas Kling
2021-11-26Userland: Use Core::ArgsParser's Vector<StringView> API everywhereAndreas Kling
...and remove the Vector<String> variant since there are no remaining users of this API.
2021-11-26cat: Use TRY() and LibCore syscall wrappers a lot more :^)Andreas Kling
2021-11-25cat: Port to LibMain :^)Kenneth Myhra
2021-04-29Utilities: Use Vector<String> positional arguments in some placesAndreas Kling
There are more places we can use these, I just picked some that felt like they improved the code.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-12Userland: Move command-line utilities to Userland/Utilities/Andreas Kling