diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2021-01-08 23:20:11 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2021-01-08 23:20:11 +0300 |
| commit | aebae4d098e6a17e3b475416f427802121337a42 (patch) | |
| tree | 6b5f667dba179963f9271459887287f40ffdf03d | |
| parent | f4f4a145c70a144705bc9800c0fb37e7db9bf4ed (diff) | |
| download | dotfiles-aebae4d098e6a17e3b475416f427802121337a42.tar.gz dotfiles-aebae4d098e6a17e3b475416f427802121337a42.zip | |
bashrc: modify fslcd function
| -rw-r--r-- | .bashrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -40,7 +40,9 @@ pacs() { FOSSILS_HOME=$HOME/Documents/Fossils fslcd() { - cd $(fossil all ls -c | fzf) + local fsl_checkout + fsl_checkout=$(fossil all ls -c | fzf +m) && + cd "$fsl_checkout" } # fossil init script |
