14 lines
247 B
Bash
14 lines
247 B
Bash
|
#! /bin/sh
|
||
|
#
|
||
|
# venv.sh
|
||
|
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
|
||
|
#
|
||
|
# Distributed under terms of the MIT license.
|
||
|
#
|
||
|
|
||
|
[ -r ./venv/bin/activate ] || exit 1
|
||
|
. ./venv/bin/activate
|
||
|
printf "Spawned a terminal within the venv\n"
|
||
|
exec bash
|
||
|
|