One liners: Difference between revisions

From Playing with linux...
Jump to navigation Jump to search
(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...")
 
No edit summary
Line 22: Line 22:
<pre>
<pre>
C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -command "& {$app = Get-WmiObject -Class Win32_Product -Filter \"Name = 'Linphone'\"; $app.Uninstall() }"
C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -command "& {$app = Get-WmiObject -Class Win32_Product -Filter \"Name = 'Linphone'\"; $app.Uninstall() }"
</pre>
Actually a two liner, but this is to put your computer to sleep after 60 seconds from the commandline. Note: hibernate should be turned off for this.
<pre>
timeout 60
rundll32.exe powrprof.dll,SetSuspendState 0,1,0
</pre>
</pre>

Revision as of 22:22, 20 February 2017

sed

Replace all enters with spaces with sed.

sed ':a;N;$!ba;s/\n/ /g'


Replace all uppercase letters with lowercase with sed.

sed -e 's/\(.*\)/\L\1/'

The same with tr

tr '[:upper:]' '[:lower:]'


Powershell

One liner powershell command to uninstall the application 'Linphone'.

C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -command "& {$app = Get-WmiObject -Class Win32_Product -Filter \"Name = 'Linphone'\"; $app.Uninstall() }"

Actually a two liner, but this is to put your computer to sleep after 60 seconds from the commandline. Note: hibernate should be turned off for this.

timeout 60
rundll32.exe powrprof.dll,SetSuspendState 0,1,0