Switch to unified view

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