8 lines
254 B
Bash
Executable file
8 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# A simple bookmarking alias used in conjunction with sdir and our $HOME/.aliases file to bookmark our current directory to be returned to later using rdir.
|
|
|
|
# grabs the current $sdir environment variable
|
|
source $HOME/.zshrc
|
|
|
|
cd $sdir && ls
|