You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On macOS the users $HOME folder is /Users/<username>, also known as ~/ in most of the *nix world.
The /home folder is part of the system and is not user writable. It is actually a symlink to /System/Volumes/Data/home which contains no data or folders. It will cause an error if you try to write to that location.
In your scripts you would need to change the macOS path to /Users/MY_USERNAME/Documents/CPAP_Data
Here is the output from the command line:
%)── echo $HOME
/Users/jeff
and from my home directory:
%)── pwd
/Users/jeff
The text was updated successfully, but these errors were encountered:
On macOS the users
$HOME
folder is/Users/<username>
, also known as~/
in most of the *nix world.The
/home
folder is part of the system and is not user writable. It is actually a symlink to/System/Volumes/Data/home
which contains no data or folders. It will cause an error if you try to write to that location.In your scripts you would need to change the macOS path to
/Users/MY_USERNAME/Documents/CPAP_Data
Here is the output from the command line:
and from my home directory:
The text was updated successfully, but these errors were encountered: