POSIX: Difference between revisions

From wikinotes
 
(One intermediate revision by the same user not shown)
Line 11: 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\._\-]+"