diff options
author | Jesús <heckyel@hyperbola.info> | 2021-07-09 15:27:16 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-07-09 15:27:16 -0500 |
commit | 739c821a54c01816e60eb5f774c8977a1e221ea0 (patch) | |
tree | e04a7f5a6fe4d450d43fd45c412f9d415bcb7a7e /utils/bak_cleaner.sh | |
parent | c1322a4e9a1fb0a286dab1277a740072d0ab30f9 (diff) | |
download | fair-viewer-739c821a54c01816e60eb5f774c8977a1e221ea0.tar.lz fair-viewer-739c821a54c01816e60eb5f774c8977a1e221ea0.tar.xz fair-viewer-739c821a54c01816e60eb5f774c8977a1e221ea0.zip |
upstream
Diffstat (limited to 'utils/bak_cleaner.sh')
-rwxr-xr-x | utils/bak_cleaner.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bak_cleaner.sh b/utils/bak_cleaner.sh index cb8340e..3adb916 100755 --- a/utils/bak_cleaner.sh +++ b/utils/bak_cleaner.sh @@ -1,3 +1,3 @@ #!/bin/sh -for i in $(git status | grep \.bak$ | perl -nE 'say +(split)[-1]'); do echo $i; rm $i; done +for i in $(git status | grep \.bak$ | perl -nE 'say +(split)[-1]'); do echo "$i"; rm "$i"; done |