파일
rocm-systems/projects/rocprofiler-systems/docker/entrypoint-rhel.sh
T

.git-blame-ignore-revs에 있는 리비전을 무시합니다. 일반 blame 보기를 보려면 여기를 클릭하여 우회하세요.

15 라인
230 B
Bash
Raw 일반 보기 히스토리

#!/bin/bash -l
2022-04-04 15:27:38 -05:00
if [ -f /etc/profile.d/modules.sh ]; then
source /etc/profile.d/modules.sh
module load mpi &> /dev/null
2023-03-08 01:54:06 -06:00
fi
2022-04-04 15:27:38 -05:00
if [ -z "${1}" ]; then
: ${SHELL:=/bin/bash}
exec ${SHELL}
2022-04-04 15:27:38 -05:00
else
set -e
eval $@
fi