I'm having vollowing bash script, which executes another script and then executes the next argument:
TOOLS=`dirname $0`
VENV=$TOOLS/../.venv
source $VENV/Scripts/activate && "$@"
How can I convert this to be able execute this inside a windows command line?
dirname $0is%~dp0and the rough equivalent ofsourceiscall.