Update content src/site/notes/Coding Tips (Classical)/Terminal Tips/About terminal.md
parent
91a2f31c36
commit
ae304a7493
|
@ -38,3 +38,13 @@ This copies contents of all files & subdirectories in a folder/directory to ano
|
|||
```
|
||||
cp -r /path/to/source/directory /path/to/destination/directory/
|
||||
```
|
||||
|
||||
Find the generic password to a public wifi.
|
||||
```
|
||||
security find-generic-password -wa "Wifi-name"
|
||||
```
|
||||
|
||||
Output your ipv4 & ipv6 addresses.
|
||||
```
|
||||
ifconfig en0 | grep inet | awk '{ print$2 }'
|
||||
```
|
Loading…
Reference in New Issue