瀏覽代碼

adds commands to xargs and moves to pages/common

  - xargs is also native to OS X
Alex Flores 9 年之前
父節點
當前提交
b1d38625d5
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      pages/common/xargs.md

+ 4 - 0
pages/linux/xargs.md → pages/common/xargs.md

@@ -13,3 +13,7 @@
 - Example: list unneeded packages with deborphan and remove them with apt-get:
 
 `sudo deborphan | xargs sudo apt-get remove`
+
+- creating variables: copy all files that start with 'M' to the Desktop
+
+`ls M* | xargs -J % cp % ~/Desktop`