All public logs
Jump to navigation
Jump to search
Combined display of all available logs of plnx.nl. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:44, 17 May 2025 Pverha10 talk contribs created page One liners (Created page with "== sed == Replace all enters with spaces with sed. <pre> sed ':a;N;$!ba;s/\n/ /g' </pre> <br> Replace all uppercase letters with lowercase with sed. <pre> sed -e 's/\(.*\)/\L\1/' </pre> The same with tr <pre> tr '[:upper:]' '[:lower:]' </pre> Get only the dashed mac addresses from a file <pre> grep -o '..-..-..-..-..-..' file </pre> == Powershell == One liner powershell command to uninstall the application 'Linphone'. <pre> C:\windows\system32\WindowsPowerShell\v1.0...")