Last active
February 10, 2016 19:51
-
-
Save son0p/e152deff573a648740e8 to your computer and use it in GitHub Desktop.
Revisions
-
federico lopez renamed this gist
Feb 10, 2016 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,10 @@ ## Rsync ### verbose copy rsync -av ~/projects/test /media/ff/3593-80E0/fede/projects/ ## Find ### files by size find ~/ -type f -size +2000000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
-
federico lopez revised this gist
Feb 10, 2016 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,8 @@ ## Rsync ### verbose copy ``` rsync -av ~/projects/test /media/ff/3593-80E0/fede/projects/ ``` ## Find ### files by size ``` -
federico lopez created this gist
Feb 10, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # Rsync ## Find ### files by size ``` find ~/ -type f -size +2000000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' ```