mirror of
https://github.com/flokoe/bash-hackers-wiki.git
synced 2024-11-01 14:53:06 +01:00
e966036f05
find docs/ -depth 2 -name '*.md' | xargs grep '(.*/' -l | \ xargs -I{} \ sed -i '' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../\1/\2.md)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([0-9a-zA-Z_-][0-9a-zA-Z_-]*\))%(../\1/\2.md#\3)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)\(.md\)\{0\})%(../\1/\2/\3.md)%g' \ -e 's%(/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)/\([^/#).][^/#).]*\)#\([0-9a-zA-Z_-][0-9a-zA-Z_-]*\))%(../\1/\2/\3.md#\4)%g' \ -e 's%](\([^:.>)#][^:.>)#]*\))%](../\1.md)%g' \ -e 's%](\([^:.>)#][^:.>)#]*\)#\([^:.>)#][^:.>)#]*\))%](../\1.md#\2)%g' \ {} Related to https://github.com/flokoe/bash-hackers-wiki/issues/10
17 lines
508 B
Markdown
17 lines
508 B
Markdown
# POSIX
|
|
|
|
POSIX(r) is a family of standards defined by the IEEE to give a minimum
|
|
API and interface standardization across the variants of UNIX(r)
|
|
operating systems.
|
|
|
|
One part of it is the standardization of minimum functionality and
|
|
behaviour of the system shell and some utilities (commands).
|
|
|
|
- UNIX is a registered trademark of The Open Group in the US and other
|
|
countries.
|
|
- POSIX is a registered trademark of the IEEE Inc.
|
|
|
|
## See also
|
|
|
|
- Dictionary, internal: [shell](../dict/terms/shell.md)
|