POSIX: Difference between revisions

From wikinotes
(Created page with "POSIX is a set of standards for writing code that is compatible with multiple operating systems. = Documentation = <blockquote> {| class="wikitable" |- | wikipedia || https:/...")
 
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
|-
| posix spec || http://pubs.opengroup.org/onlinepubs/9699919799/
|-
|-
| wikipedia || https://en.wikipedia.org/wiki/POSIX
| wikipedia || https://en.wikipedia.org/wiki/POSIX
Line 9: Line 11:
|}
|}
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->
= Filenames =
<blockquote>
<syntaxhighlight lang="python">
"[A-Za-z0-9\._][A-Za-z0-9\._\-]+"
</syntaxhighlight>
</blockquote><!-- Filepaths -->

Latest revision as of 13:15, 4 July 2022

POSIX is a set of standards for writing code that is compatible with multiple operating systems.

Documentation

posix spec http://pubs.opengroup.org/onlinepubs/9699919799/
wikipedia https://en.wikipedia.org/wiki/POSIX

Filenames

"[A-Za-z0-9\._][A-Za-z0-9\._\-]+"