summaryrefslogtreecommitdiff
path: root/Base/usr
AgeCommit message (Collapse)Author
2021-05-14Userland: Rename QuickShow => Image ViewerAndreas Kling
The old name was a bit too ambiguous. This one is crystal clear. :^)
2021-05-11Shell: Add an option to autosave history every N msAli Mohammad Pur
...and set it to 10 seconds by default.
2021-05-10Base: Fix a spelling error in the mitigations man pageMart G
2021-05-10Shell: Parse '\t' in doublequoted strings as a tab characterAli Mohammad Pur
This not being recognised is surprising.
2021-05-10Shell: Add support for \uhhhhhhhh escapes in stringsAli Mohammad Pur
This will be replaced with the unicode character whose codepoint is given by the unsigned 32-bit number 'hhhhhhhh' (hex).
2021-05-08Base: Fix path to LibJS tests in test-js(1) man pageLinus Groh
2021-05-08Base: Update TextEditor man page to include line and column argumentsry755
This documents the feature in c2872766f2322aa38490160b571059f05e7dcb2d
2021-05-07Base: Add manpage for file(1)Valtteri Koskivuori
2021-05-07Base: Consistently stylize arguments in man pages as inline codeLinus Groh
2021-05-05Base: Add manpage for groups(1)setepenre
2021-05-05Base: Fix typos and spelling errors in man pagesBrendan Coles
2021-05-05Base: Minor cleanup of a few man pages.Brian Gianforcaro
- Fix some typos and formatting. - Add links to Mitigations from unveil / pledge.
2021-05-05Base: Add a boot_parameters(7) to document kernel boot parameters.Brian Gianforcaro
2021-05-04Base: Update recvfd() man page after addition of `options` argumentAndreas Kling
2021-05-01Man: Add a manpage for rev(1)Mango0x45
2021-05-01Base: Add a man page for the 'bt' command.Brian Gianforcaro
2021-04-29WindowServer: Move configuration file to /etc/WindowServer.iniAndreas Kling
This was in the /etc/WindowServer/ directory which had nothing else in it, so let's just get rid of the directory and move this up one step.
2021-04-29Base: Describe heredocs in Shell's manpageAli Mohammad Pur
2021-04-25Base: Make test(1) summary line match other man pagesRudolf Adamkovič
Other `man` pages use the imperative form.
2021-04-20Everywhere: Replace SERENITY_ROOT with SERENITY_SOURCE_DIRPanagiotis Vasilopoulos
2021-04-18Everywhere: Fix a bunch of typosLinus Groh
2021-04-17Base: Remove stray backtick in the watch manpageGunnar Beutner
2021-04-16man: Update SystemServer(5) documentation with new Socket stylesin-ack
This patch adds new information about the usage of multiple sockets with eager services and the new socket takeover mechanism exposed by SystemServer.
2021-04-15Base: Add documentation for `get_process_name`Nicholas-Baron
`set_process_name` has a getter pair (which it links to); lets document it. Solves #6007.
2021-04-12Userland: Add support for -S to env commandPeter Elliott
- Refactor env to use Core::ArgsParser - create symlink from /bin/env to /usr/bin/env for compatiability
2021-04-11Everywhere: Update references from ReadMe.md => README.mdAndreas Kling
2021-03-27Base: Update `modunload` pathRoi
The file `modunload.md` has moved to `man8`
2021-03-27Base: man pages: document arguments, fix typos, use American EnglishBrendan Coles
2021-03-24jp: add man pageCesar Torres
2021-03-23Base: Add man page for zip(1)Idan Horowitz
2021-03-22Base: Document Shell's variable indexing behaviourAnotherTest
2021-03-22Base: Document Shell's immediate functionsAnotherTest
2021-03-16Base: Change path to both `modload` and `modunload` (#5804)Roi
2021-03-13QuickShow: Add help documentationBrendan Coles
2021-03-08Base: Add sysctl man pageBrendan Coles
2021-03-08Everywhere: Remove unnecessary whitespace at the end of some lines.Emanuele Torre
2021-03-07Shell: Add support for enumerating lists in for loopsAnotherTest
With some odd syntax to boot: ```sh $ for index i x in $whatever {} ```
2021-03-04Shell: Document all supported PROMPT flagsBen Wiederhake
2021-03-04Base: Add man pages for null/zero/full character devicesBrendan Coles
2021-02-28Base: Add mktemp(1) man pageIdan Horowitz
2021-02-24Profiler: Add help documentationBrendan Coles
2021-02-23Inspector: Add help documentationBrendan Coles
2021-02-21Kernel: Add "map_fixed" pledge promiseAndreas Kling
This is a new promise that guards access to mmap() with MAP_FIXED. Fixed-address mappings are rarely used, but can be useful if you are trying to groom the process address space for malicious purposes. None of our programs need this at the moment, as the only user of MAP_FIXED is DynamicLoader, but the fixed mappings are constructed before the process has had a chance to pledge anything.
2021-02-20Base: Update path in js(1) manpage exampleLinus Groh
2021-02-20Base: Mention -n option in echo(1) manpageLinus Groh
2021-02-20Base: Tweak ddate(1) manpage taglineLinus Groh
2021-02-20Base: Unify synopsis format in manpagesLinus Groh
2021-02-20Base: Do a little copy-editing in Mitigations(7)Andreas Kling
2021-02-20Base: Fix a broken commit link in Mitigations(7)Andreas Kling
2021-02-20Base: Document more the mitigations in man7/Mitigations.mdBrian Gianforcaro
Document: * Unmap After Init * RELRO * -fstack-clash-protection * -fstack-protector / -fstack-protector-strong