initial commit

This commit is contained in:
2024-11-17 23:46:59 +01:00
parent abc3f81791
commit e45dbad2b0
4 changed files with 46 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
export PATH="$PATH:$PWD/target/debug/"
pid=( $(ps -o ppid) )
nav() {
cd "$(navigate ${pid[-2]} $*)"
}
push() {
cd "$(navigate ${pid[-2]} push $*)"
}
pop() {
cd "$(navigate ${pid[-2]} pop $*)"
}