LoRexxar's Blog | 信息技术分享

shell上一些有趣的命令

2016/07/18

有时候能碰到一些有趣的命令,那就记录下来,以后会更新在这里

windows

cmd

看已连接过的wifi密码

windows下cmd只要是root权限跑起来都可以执行

1
for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do  @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear

linux

fork bomb

1
(){:|:&};:
CATALOG
  1. 1. windows
    1. 1.1. cmd
      1. 1.1.1. 看已连接过的wifi密码
  2. 2. linux
    1. 2.0.1. fork bomb