blob: a186d17f73f003edc5863757b5f03adc8ef32390 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#+title: Shell Commands & Scripts
#+date: <2025-03-19>
* File Loop
#+begin_src shell
# All files in current directory
for file in *; do echo "${file}"; done
# Files only
for file in *; do if [ -f "$file" ]; then echo "$file"; fi; done
# Directories only
for file in *; do if [ -d "$file" ]; then echo "$file"; fi; done
#+end_src
* Exifdata
#+begin_src shell
sudo exiftool -r -all= -ext jpg -ext png .
#+end_src
* Optipng
#+begin_src shell
optipng -o7 image.png
#+end_src
* Nginx + Goaccess
#+begin_src shell
zcat /var/log/nginx/access.log.*.gz | goaccess /var/log/nginx/access.log -
#+end_src
* Distro Information
#+begin_src shell
echo /etc/*_ver* /etc/*-rel*; cat /etc/*_ver* /etc/*-rel*
#+end_src
* sed
#+begin_src shell
# Replace text within file
sed -i '' 's/SEARCH_TEXT/REPLACEMENT_TEXT/g' file.txt
# Delete empty lines
sed '/^\s*$/d'
#+end_src
|