mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-19 03:42:21 +01:00
16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
export QP_ROOT=$(dirname $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 $@
|
||
|
|
||
|
|
||
|
|
||
|
|