dotfiles/home/jobs/redlattice.sh

17 lines
270 B
Bash
Raw Normal View History

2023-10-25 15:37:38 +00:00
#!/bin/bash
function rl() {
for var in "$@"
do
open -a iTerm ~/rl/$var
settitle $var
done
}
2023-10-25 19:30:40 +00:00
function gsub() {
git submodule update --init --recursive --remote
}
alias portalshell="docker-compose -f docker-compose.yml exec portald bash"