1 # Top Disk-Using directories
2 # TODO: Consider using numfmt instead of awk
5 |
sort -n -k 1 -r --parallel="$(nproc)" \
11 sub("^" $1 "\t+", "", path)
12 gb = size / 1024 / 1024
13 printf("%f\t%s\n", gb, path)
18 # Top Disk-Using Files
20 find "$1" -type f
-printf '%s\t%p\0' \
21 |
sort -z -n -k 1 -r \
27 sub("^" $1 "\t+", "", path)
28 gb = size / 1024 / 1024 / 1024
29 printf("%f\t%s\n", gb, path)
33 # Most-recently modified file system objects
36 # - intentionally not quoting the parameters, so that some can be ignored
37 # if not passed, rather than be passed to find as an empty string;
38 # - %T+ is a GNU extension;
39 # - gawk is able to split records on \0, while awk cannot.
40 find $@
-printf '%T@ %T+ %p\0' \
41 |
tee >(gawk
-v RS
='\0' 'END { printf("[INFO] Total found: %d\n", NR); }') \
42 |
sort -z -k 1 -n -r \
43 |
head -n "$(stty size | awk 'NR == 1 {print $1 - 5}')" -z \
46 sub("^" $1 " +", "") # Remove epoch time
47 sub("+", " ") # Blank-out the default separator
48 sub("\\.[0-9]+", "") # Remove fractional seconds
62 pactl info |
awk '/^Default Sink:/ {print $3}'
66 curl
"https://xq-api.voidlinux.org/v1/query/x86_64?q=$1" | jq
'.data'
71 LESS_TERMCAP_md
=$
'\e[01;31m' \
72 LESS_TERMCAP_me
=$
'\e[0m' \
73 LESS_TERMCAP_se
=$
'\e[0m' \
74 LESS_TERMCAP_so
=$
'\e[01;44;33m' \
75 LESS_TERMCAP_ue
=$
'\e[0m' \
76 LESS_TERMCAP_us
=$
'\e[01;32m' \
81 cd "$(~/bin/experiment $@)" ||
exit 1
85 ledit
-l "$(stty size | awk '{print $2}')" ocaml $@
89 cat "$(find ~/Archives/Documents/HOWTOs -mindepth 1 -maxdepth 1 | sort | fzf)"
93 curl
"https://api.github.com/$1/$2/repos?page=1&per_page=10000"
99 gh_dir
="${DIR_GITHUB}/${gh_user_name}"
101 cd "$gh_dir" ||
exit 1
102 gh_fetch_repos
"$gh_user_type" "$gh_user_name" \
103 | jq
--raw-output '.[] | select(.fork | not) | .git_url' \
109 gh_clone
'users' "$1"
117 gh_username
=$
(echo "$1" |
awk -F / '"$1 == "https" && $3 == github.com" {print $4}')
118 gh_dir
="${DIR_GITHUB}/${gh_username}"
120 cd "$gh_dir" ||
exit 1
124 work_log_template
() {
144 mkdir
-p "$DIR_WORK_LOG"
145 file_work_log_today
="${DIR_WORK_LOG}/$(date +%F).md"
146 if [ ! -f "$file_work_log_today" ]
148 work_log_template
> "$file_work_log_today"
150 vim
"$file_work_log_today"
155 curl
"http://wttr.in/$WEATHER_LOCATION"
159 bluetoothctl
-- paired-devices \
161 |
xargs bluetoothctl
-- info
165 bluetoothctl
-- devices \
167 |
xargs bluetoothctl
-- info
172 $@
2> >(tee "$stderr")
176 0) urgency
='normal';;
177 *) urgency
='critical'
179 notify-send
-u "$urgency" "Job done: $code" "$(cat $stderr)"
This page took 0.096311 seconds and 4 git commands to generate.