9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 10:15:18 +02:00
qp2/bin/qpsh

17 lines
292 B
Bash
Executable File

#!/bin/bash
REALPATH=$( cd "$(dirname "$0")" ; pwd -P )
export QP_ROOT=${REALPATH}/..
bash --init-file <(cat << EOF
[[ -f /etc/bashrc ]] && source /etc/bashrc
[[ -f ${HOME}/.bashrc ]] && source ${HOME}/.bashrc
source ${QP_ROOT}/quantum_package.rc
qp prompt
EOF
) -i $@