diff options
author | ath3 <ha05190@protonmail.com> | 2019-06-19 13:40:31 +0200 |
---|---|---|
committer | ath3 <ha05190@protonmail.com> | 2019-06-19 13:40:31 +0200 |
commit | c499f1cb7fa5b44299bd8e4d7635c67006232cca (patch) | |
tree | 1edf1e349b5bea14c4bf5c80baa1cc73b9ebb1ae /plugins | |
parent | 4757873d3a4f72664649f12c56aa7f593cd0cfa6 (diff) | |
download | nnn-c499f1cb7fa5b44299bd8e4d7635c67006232cca.tar.gz |
Changed bash code to sh
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/md5sum | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/md5sum b/plugins/md5sum index 0ba8a1b..76a2571 100755 --- a/plugins/md5sum +++ b/plugins/md5sum @@ -19,9 +19,7 @@ if [ -s "$selection" ]; then fi if [ "$resp" = "s" ]; then - arr=$(cat $selection | tr '\0' '\n') - { read -r file; } <<< "$arr" - file=$(basename "$file").md5 + file=$(basename "$(cat $selection | tr '\0' '\n' | head -n 1)").md5 cat "$selection" | sed 's|'"$PWD/"'||g' | xargs -0 -i md5sum {} > "$file" else if ! [ -z "$1" ] && [ -f "$1" ]; then |