-
Notifications
You must be signed in to change notification settings - Fork 0
Filename
Nat! edited this page Feb 8, 2018
·
1 revision
A filename should be fully expanded and it should not be absolute. It should not contain relative components like
.
..
. mulle-monitor takes care of that and it shouldn't concern you too
much.
Bad filenames:
Filename | Why it's bad |
---|---|
/x |
absolute path |
./x.c |
contains relative component ./ |
a/../foo.c |
contains relative component .. |
~/x |
~ needs expansion |
${HOME}/x |
HOME needs expansion |