Files
dot/.bash.d/.bash_functions
2026-02-21 08:08:06 -05:00

9 lines
202 B
Bash

# $1: Version
# $2: Path to Qt; defaults to $HOME/Qt
function assistant {
local version=${1:-6\.7\.3}
local path=${2:-$HOME/Qt}
nohup ${path%/}/$version/gcc_64/bin/assistant > /dev/null 2>&1 &
}