فهرست منبع

Update sort.md

Larry850806 9 سال پیش
والد
کامیت
e608317d3c
1فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 8 0
      pages/common/sort.md

+ 8 - 0
pages/common/sort.md

@@ -13,3 +13,11 @@
 - Sort passwd file by the 3rd field:
 
 `sort -t: -k 3n /etc/passwd`
+
+- Sort a file as number in ascending order:
+
+`sort -n {{filename}}`
+
+- Sort a file preserving only unique lines:
+
+`sort -u {{filename}}`