One liners: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 May 2025

  • curprev 09:4409:44, 17 May 2025Pverha10 talk contribs 1,074 bytes +1,074 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..."