[b9e282]: / .devcontainer / initializeCommand.sh

Download this file

14 lines (10 with data), 335 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/bin/bash
# Create the mounted config directories if they don't already exist
mkdir -p ~/.aws
mkdir -p ~/.ngc
mkdir -p ~/.cache
mkdir -p ~/.ssh
[ ! -f ~/.netrc ] && touch ~/.netrc
# Create the ~/.bash_history_devcontainer file if it doesn't exist
[ ! -f ~/.bash_history_devcontainer ] && touch ~/.bash_history_devcontainer
exit 0