mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
16 lines
269 B
Bash
Executable File
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 $@
|
|
|
|
|
|
|
|
|