Explorar el Código

adds commands to xargs and moves to pages/common

  - xargs is also native to OS X
Alex Flores hace 9 años
padre
commit
b1d38625d5
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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`