aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/splitjoin
blob: 60a5408264263f622b2bc821e2379a50a38e21c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env sh

# Description: Splits the file passed as argument or joins selection
#
# Note: Adds numeric suffix to split files
#       Adds '.out suffix to the first file to be joined and saves as output file for join
#
# Shell: POSIX compliant
# Authors: Arun Prakash Jana, ath3

selection=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection
resp=s

if [ -s "$selection" ]; then
    echo -n "press 's' (split current file) or 'j' (join selection): "
    read resp
fi

if [ "$resp" = "j" ]; then
    if [ -s "$selection" ]; then
        arr=$(tr '\0' '\n' < "$selection")
        if [ "$(echo "$arr" | wc -l)" -lt 2 ]; then
            echo "joining needs at least 2 files"
            exit
        fi
        for entry in $arr
        do
            if [ -d "$entry" ]; then
                echo "cant join directories"
                exit
            fi
        done

        file="$(basename "$(echo "$arr" | sed -n '1p' | sed -e 's/[0-9][0-9]$//')")"
        sort -z < "$selection" | xargs -0 -I{} cat {} > "${file}.out"
    fi
elif [ "$resp" = "s" ]; then
    if [ -n "$1" ] && [ -f "$1" ]; then
        # a single file is passed
        echo -n "split size in MB: "
        read size

        if [ -n "$size" ]; then
            split -d -b "$size"M "$1" "$1"
        fi
    fi
fi