Re: Storing /home/ directory in DOSBox via using a variable in GNU/Linux
Posted on 2025-06-15, 14:02
The current user is stored in the $USER variable so this should work: Copy code to clipboard 1 dosbox -c "mount c /home/$USER/.dosbox" Another option is to use the $HOME variable: Copy code to clipboard 1 dosbox -c "mount c $HOME/.dosbox"