Explorar o código

adds commands to xargs and moves to pages/common

  - xargs is also native to OS X
Alex Flores %!s(int64=9) %!d(string=hai) anos
pai
achega
b1d38625d5
Modificáronse 1 ficheiros con 4 adicións e 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`