Update content src/site/notes/Coding Tips (Classical)/Terminal Tips/About terminal.md

update-template-to-v1.54.2-d58922aa-d6d0-4a9d-ae7f-5f7ff40cbb58
Shwetha Jayaraj 2023-08-26 16:16:30 -04:00
parent 91a2f31c36
commit ae304a7493
1 changed files with 10 additions and 0 deletions

View File

@ -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 }'
```