aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/splitjoin
blob: cbb573e6f659c36b61ccd7841f2071af46bffa55 (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
#!/usr/bin/env bash

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

selection=~/.config/nnn/.selection

echo -n "press 's' (split current file) or 'j' (join selection): "
read resp

if [ "$resp" = "j" ]; then
    if [ -s "$selection" ]; then
        arr=$(cat $selection | tr '\0' '\n')
        { read -r file; } <<< "$arr"

        file=$(basename "$file").out

        cat "$selection" | sort -z | xargs -0 -i cat {} > "$file"
    fi
elif [ "$resp" = "s" ]; then
    if ! [ -z "$1" ] && [ -f "$1" ] ; then
        # a single file is passed
        echo -n "split size in MB: "
        read size

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