~/whynot #656
Answered
by
M-rcus
James-MF-Thomas
asked this question in
Q&A
~/whynot
#656
-
So the cmd line (macOS) and python: "cd ~/Documents" takes you to the user docs folder, In the OFscript: " ~/arbitrary " will not register as a location/destination. just curious why. |
Beta Was this translation helpful? Give feedback.
Answered by
M-rcus
Jan 6, 2021
Replies: 1 comment
-
This software uses Python and thus a different method of resolving paths (specifically |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
James-MF-Thomas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
~
= "home folder" is a feature of the shell (known as "tilde expansion").This software uses Python and thus a different method of resolving paths (specifically
os.path
I believe).