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

16 lines
269 B
Bash
Executable File

#!/bin/bash
export QP_ROOT=$(dirname "$(readlink -f "$0")")/..
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 $@