Browse Source

Merge pull request #308 from lord63-forks/markdown-lint-fix

Fix markdown lint warnings for linux man pages
Ruben Vereecken 9 năm trước cách đây
mục cha
commit
99e78c58e0

+ 2 - 3
pages/linux/apt-get.md

@@ -3,16 +3,15 @@
 > Debian and Ubuntu package management utility
 
 - Synchronize list of packages and versions available. This should be run first, before running subsequent apt-get commands.
- 
+
 `apt-get update`
 
 - install a new package
 
 `apt-get install {{package}}`
 
-
 - remove a package
- 
+
 `apt-get remove {{package}}`
 
 - Upgrade installed packages to newest available versions

+ 3 - 3
pages/linux/aptitude.md

@@ -3,7 +3,7 @@
 > Debian and Ubuntu package management utility
 
 - Synchronize list of packages and versions available. This should be run first, before running subsequent aptitude commands.
- 
+
 `aptitude update`
 
 - install a new package
@@ -15,13 +15,13 @@
 `aptitude search {{package}}`
 
 - remove a package
- 
+
 `aptitude remove {{package}}`
 
 - Upgrade installed packages to newest available versions
 
 `aptitude upgrade`
 
-- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies. 
+- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies.
 
 `aptitude full-upgrade`

+ 1 - 1
pages/linux/dpkg.md

@@ -1,4 +1,4 @@
-#dpkg
+# dpkg
 
 > debian package manager
 

+ 1 - 1
pages/linux/du.md

@@ -14,6 +14,6 @@
 
 `du -ah {{directory}}`
 
-- list the KB sizes of directories for N levels below the specified directory 
+- list the KB sizes of directories for N levels below the specified directory
 
 `du --max-depth=1`

+ 1 - 1
pages/linux/ip.md

@@ -10,7 +10,7 @@
 
 `ip r`
 
-- Make an interface up/down 
+- Make an interface up/down
 
 `ip link set {{interface}} up/down`
 

+ 1 - 1
pages/linux/mdadm.md

@@ -1,4 +1,4 @@
-#mdadm
+# mdadm
 
 > RAID management utility
 

+ 2 - 2
pages/linux/pacman.md

@@ -3,7 +3,7 @@
 > Arch Linux package manager utility
 
 - synchronize and update all packages
- 
+
 `pacman -Syyu`
 
 - install a new package
@@ -11,7 +11,7 @@
 `pacman -S package-name`
 
 - remove a package and its dependencies
- 
+
 `pacman -Rs package-name`
 
 - search the package database for a keyword

+ 2 - 3
pages/linux/strace.md

@@ -1,8 +1,8 @@
-# strace 
+# strace
 
 > Troubleshooting tool for tracing system calls
 
-- Start tracing a specific process by its PID 
+- Start tracing a specific process by its PID
 
 `strace -p {{pid}}`
 
@@ -13,4 +13,3 @@
 - Count time, calls, and errors for each system call and report a summary on program exit.
 
 `strace -p {{pid}} -c`
-

+ 1 - 1
pages/linux/wpa_cli.md

@@ -16,7 +16,7 @@
 `wpa_cli set_network {{number}} ssid {{SSID}}`
 `wpa_cli set_network {{number}} psk {{passkey}}`
 
-- enable network 
+- enable network
 
 `wpa_cli enable_network {{number}}`