User Tools

Site Tools


useful:linux-commands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revisionBoth sides next revision
useful:linux-commands [2022/08/12 08:19] – created adminuseful:linux-commands [2023/04/13 15:46] admin
Line 2: Line 2:
  
 ====== Linux Commands ====== ====== Linux Commands ======
 +
 +===== Installing a GPG key =====
 +
 +Example:
 +
 +     wget -O- https://download.webmin.com/jcameron-key.asc | sudo gpg --dearmor | sudo tee /usr/share/keyrings/jcameron-key.gpg > /dev/null 2>&
 +     
 +Then need to edit the sources.list file to look something like:
 +
 +     deb [signed-by=/usr/share/keyrings/jcameron-key.gpg] https://download.webmin.com/download/repository sarge contrib
  
 ===== Change permissions for whole directory structure ===== ===== Change permissions for whole directory structure =====
Line 15: Line 25:
 Adapt as required. Adapt as required.
  
 +===== Delete all files with given pattern =====
 +
 +     find . -name '*altauserpoints*' -print0 | xargs -0 -P0 rm
 +     
 +Adapt as required.
 +
 +===== Make a change in every file in a directory  =====
 +
 +     sed -i 's/foo/bar/g' *
 +     
 +To make the change through a whole directory tree:
 +
 +     find ~/public_html/my_website/pages -type f -exec sed -i 's/2017/2018/g' {} \;
 +     
useful/linux-commands.txt · Last modified: 2023/05/19 19:14 by admin