I know that the start "@" operator does evaluate environment variables to determine full filepath to read from. It seems that the cd command does not. Or is there some special syntax that I could use to achieve that?
What I've tried:
SQLcl: Release 20.4 Production on Wed Aug 25 08:29:51 2021
username@opsd1>cd $HOME/
CD-001: $HOME/ is not a directory.
username@opsd1>cd $HOME
CD-001: $HOME is not a directory.
username@opsd1>cd "$HOME"
CD-001: $HOME is not a directory.
username@opsd1>cd @$HOME
CD-001: @$HOME is not a directory.
username@opsd1>cd @HOME
CD-001: @HOME is not a directory.
Tried similar stuff on Windows, to no avail.