diff options
author | Blaise Thompson <blaise@untzag.com> | 2018-04-26 09:08:42 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2018-04-26 09:08:42 -0500 |
commit | fbae4a4ca9db5c7734d12e9646b3ffdafbb97b2c (patch) | |
tree | e2ab6c48ee4ed03a5757ed0b7bd2c458e6cf09f5 | |
parent | b2e3f01427157ed2b9dcedaafc14a6f00499b2df (diff) |
2018-04-26 09:08
-rw-r--r-- | dotfiles/bashrc.sync | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dotfiles/bashrc.sync b/dotfiles/bashrc.sync index 295a2e0..b594d55 100644 --- a/dotfiles/bashrc.sync +++ b/dotfiles/bashrc.sync @@ -30,10 +30,13 @@ function git-commit-with-timestamp(){ } function git-sync-all(){ - print-line - cd ~/org; git-commit-with-timestamp; - print-line - cd ~/dotfiles; git-commit-with-timestamp; + while read -r line + do + echo "$line" + cd "$line" + git-commit-with-timestamp + done < ~/.git-synced + cd ~ } function print-cyan { |