-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathshell-utils
More file actions
93 lines (79 loc) · 1.65 KB
/
Copy pathshell-utils
File metadata and controls
93 lines (79 loc) · 1.65 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/bash
# Description: Useful command-line utilities
set -e
_recipe _path
case $_PLATFORM in
darwin)
_recipe brew
_brew binutils
_brew coreutils
_brew findutils
_brew gawk
_brew gnu-indent
_brew gnu-sed
_brew gnu-tar
_brew gnu-which
# File browsing
_brew tree
_brew ncdu
# File compression
_brew p7zip
# Misc
_brew entr
_brew html-xml-utils
_brew htop
_brew jq
_brew lnav
_brew ripgrep
_brew the_silver_searcher
_brew tig
_brew tmux
_brew yq
_brew rename
_brew watch
# Override BSD tools with GNU variants
for path in $(gfind /usr/local/Cellar -type d -name gnubin); do
_path $path \;
done
;;
arch)
_recipe _arch
# File browsing
_pacman tree
_pacman ncdu
# File compression
_pacman p7zip
_pacman unrar
_pacman unzip
# Misc
_pacman entr
_yay html-xml-utils
_pacman htop
_pacman jq
_pacman go-yq
_yay lnav
_pacman ripgrep
_pacman the_silver_searcher
_pacman tig
_pacman tmux
;;
debian)
_recipe _apt
# File browsing
_apt tree
_apt ncdu
# File compression
_apt p7zip
# Misc
_apt entr
_apt html-xml-utils
_apt htop
_apt jq
_apt lnav
_apt ripgrep
_apt silversearcher-ag
_apt tig
_apt tmux
_apt yq
;;
esac