Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.28 KB | None | 0 0
  1. 656 cd /home/mike/Music
  2. 657 ls
  3. 658 find ./ |grep -i AppleDouble
  4. 659 find ./ |grep -i AppleDouble |xargs echo rm
  5. 660 man xargs
  6. 661 find ./ |grep -i AppleDouble xargs sh -c 'echo rm "$@"
  7. 662 find ./ |grep -i AppleDouble xargs sh -c 'echo rm "$@"'
  8. 663 find ./ |grep -i AppleDouble | xargs sh -c 'echo rm "$@"'
  9. 664 find ./ |grep -i AppleDouble | xargs sh -c 'echo rm \"$@\"'
  10. 665 find ./ |grep -i AppleDouble | xargs echo rm \"$@\"
  11. 666 find ./ |grep -i AppleDouble | xargs sh -c 'echo rm \"$@\"'
  12. 667 man xargs
  13. 668 find ./ |grep -i AppleDouble | xargs -n 1 sh -c 'echo rm \"$@\"'
  14. 669 find ./ |grep -i AppleDouble | xargs -n 1 sh -c 'echo rm "$@"'
  15. 670 find ./ |grep -i AppleDouble | xargs -n 2 sh -c 'echo rm "$@"'
  16. 671 find ./ |grep -i0 AppleDouble | xargs -0 -n 2 sh -c 'echo rm "$@"'
  17. 672 man find
  18. 673 find -print0 ./ |grep -i0 AppleDouble | xargs -0 -n 2 sh -c 'echo rm "$@"'
  19. 674 find ./ -print0 |grep -i0 AppleDouble | xargs -0 -n 2 sh -c 'echo rm "$@"'
  20. 675 find ./ -print0 |grep -print0 -i AppleDouble | xargs -0 -n 2 sh -c 'echo rm "$@"'
  21. 676 man grep
  22. 677 find ./ -print0 |grep --null -i AppleDouble | xargs -0 -n 2 sh -c 'echo rm "$@"'
  23. 678 man grep
  24. 679 find ./ -print0 |grep --null -i AppleDouble | xargs -0 -n 1 sh -c 'echo rm "$@"'
  25. 680 find ./ -print0 |grep --null -i AppleDouble | xargs -0 sh -c 'echo rm "$@"'
  26. 681 find ./ -print0 |grep --null -i AppleDouble
  27. 682 man grep
  28. 683 find ./ -print0 |grep -Z -i AppleDouble
  29. 684 find ./ -print0 |grep -aZ -i AppleDouble
  30. 685 find
  31. 686 find --help
  32. 687 find -iname appledouble
  33. 688 find -iname appledouble ./
  34. 689 find ./ -iname appledouble
  35. 690 find ./ -iname .appledouble
  36. 691 find ./ |grep -i appledouble
  37. 692 find ./ -iname .appledouble
  38. 693 find
  39. 694 find ./
  40. 695 find --help
  41. 696 man find
  42. 697 find ./ -depth -iname .appledouble
  43. 698* find ./ -depth -iname .appledouble
  44. 699 man find
  45. 700 man find
  46. 701 find ./ -print0
  47. 702 find ./ -print0 |grep -Z 80s
  48. 703 find ./ -print0 |grep 80s
  49. 704 find ./ -print0 |egrep -Z 80s
  50. 705 find ./ -print0 |egrep -aZ 80s
  51. 706 find ./ -print0 |egrep -aZi appledouble |xargs
  52. 707 find ./ -print0 |egrep -aZi appledouble
  53. 708 find ./ -print0 |grep -aZi appledouble
  54. 709 find ./ -print0 |grep -ai appledouble
  55. 710 find ./ -print0 |grep -aZi appledouble
  56. 711 find ./ -print0 |grep -ai appledouble
  57. 712 find ./ -print0 |grep -aZi appledouble
  58. 713 find
  59. 714 find --help
  60. 715 find . -name \.AppleDouble
  61. 716 man find
  62. 717 man find
  63. 718 find . -path \.AppleDouble
  64. 719 find . -path AppleDouble
  65. 720 man find
  66. 721 find ./ -print0 |grep -aZi appledouble |xargs echo
  67. 722 find ./ -print0 |grep -aZi appledouble |xargs -n1 echo
  68. 723 find ./ -print0 |grep --null appledouble |xargs -n1 echo
  69. 724 find ./ -print0 |grep -a --null appledouble |xargs -n1 echo
  70. 725* find ./ -print0 |grep -a --null A[
  71. 726 find ./ -print0 |grep -a appledouble
  72. 727 find ./ -print0 |grep --null -ai appledouble |xargs -n1 echo
  73. 728 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n1 echo
  74. 729 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n1 echo rm
  75. 730 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n1 echo rm '{}'
  76. 731 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n1
  77. 732 man xargs
  78. 733 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n1 sh -c 'echo "$@"'
  79. 734 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n2 sh -c 'echo "$@"'
  80. 735 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n2 sh -c 'echo \"$@\"'
  81. 736 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n2 sh -c 'echo rm \"$@\"'
  82. 737 find ./ -print0 |grep --null -ai flarn |xargs -0 -n2 sh -c 'echo rm \"$@\"'
  83. 738 find ./ -print0 |grep --null -i appledouble |xargs -0 -n2 sh -c 'echo rm \"$@\"'
  84. 739 eix grep
  85. 740 find ./ -depth -iname \.appledouble
  86. 741 find ./ |grep AppleDouble
  87. 742 find . -iregex ".*\.AppleDoubble$"
  88. 743 find . -iregex ".*\.AppleDouble$"
  89. 744 find ./ -print0 |grep --null -i appledouble |xargs -0 -n2 sh -c 'echo rm \"$@\"'
  90. 745 find ./ -print0 |grep --null -ai appledouble |xargs -0 -n2 sh -c 'echo rm \"$@\"'
  91. 746 find . -iregex ".*\.AppleDouble$"
  92. 747 cd .AppleDouble/
  93. 748 ls
  94. 749 ls -al
  95. 750 cd ..
  96. 751 find . -name AppleDouble
  97. 752 history |grep find
  98. 753 find ./ -depth -iname \.appledouble
  99. 754 find ./ -depth -iname \.appledouble -exec rm -rf
  100. 755 find . -iregex ".*\.AppleDouble$" | xargs echo rm -rf
  101. 756 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 echo rm -rf
  102. 757 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 sh -c' echo rm -rf \"$@\"'
  103. 758 history |grep sh
  104. 759 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 sh -c 'echo rm -rf \"$@\"'
  105. 760 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 sh -c -n2 'echo rm -rf \"$@\"'
  106. 761 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 -n2 sh -c 'echo rm -rf \"$@\"'
  107. 762 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 -n1 sh -c 'echo rm -rf \"$@\"'
  108. 763 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 -n3 sh -c 'echo rm -rf \"$@\"'
  109. 764 find . -iregex ".*\.AppleDouble$" -print0 | xargs -0 -n2 sh -c 'echo rm -rf \"$@\"'
  110. 765 find . -fname \.AppleDouble
  111. 766 find . -path \.AppleDouble
  112. 767 find . -iname \.AppleDouble
  113. 768 man find
  114. 769 find . -iname \.AppleDouble -delete
  115. 770 man find
  116. 771 find . -iname \.AppleDouble -exec echo rm {}"
  117. 772 find . -iname \.AppleDouble -exec echo rm "{}"
  118. 773 find . -iname \.AppleDouble -exec echo rm {}
  119. 774 find . -iname \.AppleDouble -exec echo rm \"{}\"
  120. 775 find . -iname \.AppleDouble -exec rm \"{}\"
  121. 776 man find
  122. 777 find . -iname \.AppleDouble -exec sh -c 'rm \"{}\"'
  123. 778 find . -iname \.AppleDouble -exec ls
  124. 779 find . -iname \.AppleDouble -exec ls \
  125. 780 find . -iname \.AppleDouble -exec ls \;
  126. 781 find . -iname \.AppleDouble -exec echo \;
  127. 782 find . -iname \.AppleDouble -exec echo {}\;
  128. 783 find . -iname \.AppleDouble -exec echo {} \;
  129. 784 find . -iname \.AppleDouble -exec echo "{}" \;
  130. 785 find . -iname \.AppleDouble -exec echo \"{}\" \;
  131. 786 man find
  132. 787 info find
  133. 788 man find
  134. 789 history
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement