-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer
executable file
·73 lines (55 loc) · 1.22 KB
/
transfer
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
set -e
files=".dotfiles .zsh-plugins .vim-plugins .tmux .tmuxline .git-scripts .fonts .vim/UltiSnips"
fast=0
small=0
for arg; do
case "$arg" in
(fast|f)
fast=$(($fast + 1))
;;
(small|s)
small=$(($small + 1))
;;
esac
done
cd ~
for file in $files; do
if ! [ -d "$file" ] && ! [ -f "$file" ]; then
echo "$file does not exist" >&2
exit 1
fi
done
tar cf /tmp/dotfiles.tar $files
case "$fast" in
(0)
;;
(1)
gzip -c -9 </tmp/dotfiles.tar >dotfiles.tar.gz &
zip -rq -9 dotfiles.zip $files &
;;
(*)
gzip -c </tmp/dotfiles.tar >dotfiles.tar.gz &
zip -rq dotfiles.zip $files &
;;
esac
wait
case "$small" in
(0)
;;
(1)
bzip2 -c </tmp/dotfiles.tar >dotfiles.tar.bz2
;;
(2)
bzip2 -9 -c </tmp/dotfiles.tar >dotfiles.tar.bz2
;;
(3)
xz -T $(($(nproc) - 1)) -c </tmp/dotfiles.tar >dotfiles.tar.xz
;;
(4)
xz -T $(($(nproc) - 1)) -c -9 </tmp/dotfiles.tar >dotfiles.tar.xz
;;
(5)
xz -T $(($(nproc) - 1)) -c -9e </tmp/dotfiles.tar >dotfiles.tar.xz
;;
esac