Skip to content
Snippets Groups Projects
bashrc 108 B
#!/bin/bash

# Read all profiles
shopt -s nullglob
for rc in ${INSTALLDIR}/bashrc.d/*; do
  source $rc
done