forked from AdrianDC/advanced_development_shell_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
android_linux.rc
439 lines (374 loc) · 9.7 KB
/
android_linux.rc
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/bin/bash
#
# Copyright 2015-2017 Adrian DC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# === .bashrc Update ===
function bashup()
{
# Usage: bashup (Reload ~/.bashrc)
# Reload ~/.bashrc
source ~/.bashrc;
}
# === .bashrc Edit ===
function bashe()
{
# Usage: bashe (Edit ~/.bashrc)
# Edit ~/.bashrc
fen ~/.bashrc;
}
# === Clear Screen ===
function cls()
{
# Usage: cls (Clean terminal screen)
# Clean terminal screen
echo -e \\033c;
clear;
}
# === Clipboard ===
function toclip() { xclip -selection c; }
# === Find Name ===
alias findn='find -name';
# === Folders Syncer ===
function rsynca()
{
# Usage
if [ -z "${2}" ]; then
echo '';
echo ' Usage: rsynca <path1> <path2> (Mirror a path to another)';
echo '';
return;
fi;
# Sync execution
rsync -av --delete "${1}" "${2}";
}
# === Folders Fast Syncer ===
function rsyncf()
{
# Usage
if [ -z "${2}" ]; then
echo '';
echo ' Usage: rsyncf <path1> <path2> (Mirror a path to another based on size only)';
echo '';
return;
fi;
# Sync execution
rsync -av --delete --size-only "${1}" "${2}";
}
alias pcinfo='inxi -Fxz';
# === Newer Files Finder ===
function findnewer()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: findnewer <20160123> (Search files newer than a date)';
echo '';
return;
fi;
# Search for newer files
touch -t "${1}0000.01" /tmp/filetimeref;
find . -type f -newer /tmp/filetimeref -print;
rm -f /tmp/filetimeref;
}
# === CPIO Extractor ===
function cpioext()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: cpioext <cpio_file_to_extract> (Extract cpio file)';
echo '';
return;
fi;
# Variables
local cwd;
local file;
local name;
local outdir;
# Extract cpio file
cwd=$(pwd);
file=$(echo "${1}" | sed 's/file:\/\/\(.*\)/\1/');
name=$(basename "${file}");
outdir=$(mktemp -d);
cp "${file}" "${outdir}/";
cd "${outdir}";
cpio -i -F "${name}";
diropen "${outdir}/";
cd "${cwd}";
}
# === Video Resizer ===
function videoresize()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: videoresize <video_file> (Resize video dimensions)';
echo '';
return;
fi;
# Show and run command
local command="mencoder ${1} -vf scale=480 -vf rotate=2 -ovc lavc -oac pcm -lavcopts vcodec=mpeg4:autoaspect -o ${1}.small.mp4";
echo '';
echo "${command}";
echo '';
${command};
echo '';
}
# === Automount Disabler ===
function disableautomount()
{
# Usage: disableautomount (Linux USB automount disabler)
# Linux USB automount disabler
gsettings set org.cinnamon.desktop.media-handling automount-open false
gsettings set org.cinnamon.desktop.media-handling automount false
gsettings set org.gnome.desktop.media-handling automount-open false;
gsettings set org.gnome.desktop.media-handling automount false;
}
# === Diff Binaries ===
function diffbin()
{
# Usage
if [ -z "${2}" ]; then
echo '';
echo ' Usage: diffbin <binary_left> <binary_right> [first_n_lines] (Compare binary files)';
echo '';
return;
fi;
# Full view
if [ -z "${3}" ]; then
diff -sy <(xxd "${1}") <(xxd "${2}") | less | colordiff;
# Partial view
else
diff -sy <(xxd "${1}") <(xxd "${2}") | less | colordiff | head -n "${3}";
fi;
}
# === Network Speed ===
function netspeed()
{
# Usage: netspeed (Display network speeds)
# Display network speeds
echo '';
dev_eth=$(grep -c eth0 /proc/net/dev);
dev_wlan=$(grep -c wlan0 /proc/net/dev);
tput sc;
while [ "${dev_eth}" -ne 0 ] || [ "${dev_wlan}" -ne 0 ]; do
if [ "${dev_eth}" -ne 0 ]; then
vals_eth=$(awk '{if(l1){print ($2-l1)/1024"kB/s",($10-l2)/1024"kB/s"} else{l1=$2; l2=$10;}}' \
<(grep eth0 /proc/net/dev) \
<(sleep 1; grep eth0 /proc/net/dev));
else
vals_eth=;
fi;
if [ "${dev_wlan}" -ne 0 ]; then
vals_wlan=$(awk '{if(l1){print ($2-l1)/1024"kB/s",($10-l2)/1024"kB/s"} else{l1=$2; l2=$10;}}' \
<(grep wlan0 /proc/net/dev) \
<(sleep 1; grep wlan0 /proc/net/dev));
else
vals_wlan=;
fi;
if [ ! -z "${vals_eth}" ]; then
tput rc;
tput ed;
tput el;
if [ ! -z "${vals_eth}" ]; then
echo -e " \e[1;33mEthernet:\e[0m";
echo -e " Download: $(echo "${vals_eth}" | awk '{ print $1 }')";
echo -e " Upload: $(echo "${vals_eth}" | awk '{ print $2 }')";
fi;
if [ ! -z "${vals_wlan}" ]; then
echo -e " \e[1;33mWLAN: \e[0m";
echo -e " Download: $(echo "${vals_wlan}" | awk '{ print $1 }')";
echo -e " Upload: $(echo "${vals_wlan}" | awk '{ print $2 }')";
fi;
fi;
sleep 1;
done;
}
# === Net Speed Test ===
function netspeedtest()
{
# Usage: netspeedtest (Run SpeedTest client)
# Run SpeedTest client
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -;
}
# === Drive Speed Test ===
function drivespeedtest()
{
# Usage
if [ -z "${1}" ] || [ -e "${1}" ]; then
echo '';
echo ' Usage: drivespeedtest <test_file_path> (Run drive write speed test)';
echo '';
return;
fi;
# Variables
local path=${1};
local time_diff;
local value;
# Run drive write speed test
echo '';
sync;
time_diff=$(date +%s%N);
time sh -c "dd if=/dev/zero of=${path} bs=100k count=1k && sync";
time_diff=$(($(date +%s%N) - time_diff));
rm "${path}";
echo '';
# Calculate performance
value=$((104857600 * 1000 / time_diff));
echo -e " \e[1;33m[ Path transfer performance: ${value} MB/s ]\e[0m";
echo '';
}
# === Trim Trees ===
function trimtrees()
{
# Usage: trimtrees <paths> (Hardlink duplicated files with trimtrees from cpansearch.perl.org)
# Hardlink duplicated files with trimtrees from cpansearch.perl.org
perl <(curl -Ls http://cpansearch.perl.org/src/ANDK/Perl-Repository-APC-2.002/eg/trimtrees.pl) "${@}";
}
# === Build Locker ===
function buildlock()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: buildlock <command...> (Mutex-locked command execution)';
echo '';
return;
fi;
# Variables
local file_lock=${ANDROID_DEVELOPMENT_SHELL_TOOLS_WORKSPACE}/.tmp_runlock.tag;
# Lock Detected
if [ -f "${file_lock}" ]; then
echo '';
echo " buildlock: The file '${file_lock}' still exists, waiting...";
echo '';
while [ -f "${file_lock}" ]; do sleep 10; done;
fi;
# Run work
echo 1 > "${file_lock}";
"${@}";
rm -f "${file_lock}";
}
# === File Scheme Sorter ===
function fileschemesorter()
{
# Usage
if [ -z "${2}" ]; then
echo '';
echo ' Usage: fileschemesorter <file_to_sort> <file_reference> (Sort file against scheme file)';
echo '';
return;
fi;
# Variables
local file_to_sort=${1};
local file_reference=${2};
local file_temp_1;
local file_temp_2;
local file_temp_3;
# Initialize variables
file_temp_1=$(mktemp);
file_temp_2=$(mktemp);
file_temp_3=$(mktemp);
# Reference browse
touch "${file_temp_1}";
while read -r line; do
# Relevant lines
if [ ! -z "${line}" ] && grep -q "${line}$" "${file_to_sort}"; then
echo "${line}" >> "${file_temp_1}";
fi;
done < "${file_reference}";
# Final comparison
sort "${file_to_sort}" -o "${file_temp_2}";
sort "${file_temp_1}" -o "${file_temp_3}";
meld "${file_temp_2}" "${file_temp_3}";
meld "${file_to_sort}" "${file_temp_1}";
echo '';
echo ' Press [ENTER] to continue...';
echo '';
read -r;
rm "${file_to_sort}";
mv "${file_temp_1}" "${file_to_sort}";
# Cleanup
rm -f "${file_temp_2}";
rm -f "${file_temp_3}";
}
# === USB MTP Mounts ===
function mtpmountdisable()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: mtpmountdisable (Disable MTP automount)';
echo '';
return;
fi;
# Disable MTP automount
gsettings set org.cinnamon.desktop.media-handling automount-open false;
gsettings set org.cinnamon.desktop.media-handling automount false;
}
# === CleanRAM ===
function cleanram()
{
# Usage: cleanram (RAM caches cleanup)
# Run cleanram script
"${ANDROID_DEVELOPMENT_SHELL_TOOLS_DIR}/run_cleanram.sh";
}
# === CleanRAM after builds ===
function cleanrambuild()
{
# Usage: cleanrambuild (RAM caches cleanup)
# Run cleanram script
"${ANDROID_DEVELOPMENT_SHELL_TOOLS_DIR}/run_cleanrambuild.sh";
}
# === CleanRAM with Kills ===
function cleanramkill()
{
# Usage: cleanramkill (Complete RAM cleanup including "java")
# Kill relevant RAM eating processes
killall java;
# Run cleanram script
cleanram;
}
# === Network Manager Restart ===
function networkrestart()
{
# Usage: networkrestart (Restart network manager)
# Restart network manager
sudo service network-manager restart;
}
# === Pushbullet Folder Sizes ===
function pushbsizes()
{
# Usage
if [ -z "${1}" ]; then
echo '';
echo ' Usage: pushbsizes <paths> (Path sizes in PushBullet notification)';
echo '';
return;
fi;
# Variables
local message;
# Notify all input sizes
echo '';
echo " Studying sizes of inputs: ${*}";
echo '';
message=$(du -csh "${@}" | tee /dev/stderr | tr '\t' ' ');
pushb "${message//$'\n'/\\\n}";
}
# === Done Notification Sender ===
alias isdone='notify-send "Process execution finished !"';
# === Resources Monitor ===
alias topcpu='top -o %CPU';
alias topmem='top -o %MEM';