diff options
author | xyz <gky44px1999@gmail.com> | 2021-07-28 12:37:11 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-07-28 12:37:11 -0700 |
commit | fecc864475b38a94568a283b99dfa45eeded9c93 (patch) | |
tree | ad8f2e201bef20685a808c493a5418fe53c0c01e /.local/bin/orgext | |
parent | 52aea8d29c035727dd6db53e9fe5de8a7dc6bc61 (diff) |
use /home/xyz/.local/bin instead of realpath .
Diffstat (limited to '.local/bin/orgext')
-rwxr-xr-x | .local/bin/orgext | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/orgext b/.local/bin/orgext index a1eff247..e4058f97 100755 --- a/.local/bin/orgext +++ b/.local/bin/orgext @@ -11,7 +11,7 @@ getext () outdir () { - find . -type f -execdir mv -t "$(realpath .)" '{}' \+ + find . -type f -execdir mv -t "$PWD" '{}' \+ find . -mindepth 1 -maxdepth 1 -type d -execdir rm -r '{}' \+ } |