Showing 1 changed files with 5 additions and 1 deletions
+5 -1
README.md
... ...
@@ -118,7 +118,11 @@ urldecode() {
118 118
 ```
119 119
 
120 120
 # Zeroing a file
121
-
122 121
 ```bash
123 122
 : > filename
124 123
 ```
124
+
125
+# List of Opened Socket without netstat
126
+```bash
127
+lsof -i4 -n
128
+```