summaryrefslogtreecommitdiff
path: root/Userland/Utilities/rev.cpp
AgeCommit message (Collapse)Author
2022-01-24rev: Port to LibMainMichel Hermier
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-10-17rev: Unbreak reading from standard inputSeekingBlues
Since Core::File does not handle streaming input properly (see #5093 and #4198), we use the LibC APIs instead.
2021-05-12LibCore+Everywhere: Move OpenMode out of IODeviceAli Mohammad Pur
...and make it an enum class so people don't omit "OpenMode".
2021-05-01Userland: Add the rev(1) utility to reverse linesMango0x45