GNU/Linux >> Tutoriels Linux >  >> Linux

Quelle est la bonne syntaxe find -exec

Solution 1 :

Vous pouvez utiliser n'importe lequel des formulaires :

find . -size +2M -exec rm {} +

find . -size +2M -exec rm {} \;

Le point-virgule doit être échappé !

Solution 2 :

-exec rm {} \;

vous pouvez utiliser .. man find

-exec command ;
              Execute command; true if 0 status is returned.  All following arguments to find are taken to be arguments to the  command  until
              an  argument  consisting of `;' is encountered.  The string `{}' is replaced by the current file name being processed everywhere
              it occurs in the arguments to the command, not just in arguments where it is alone, as in some versions of find.  Both of  these
              constructions  might  need  to  be escaped (with a `\') or quoted to protect them from expansion by the shell.  See the EXAMPLES
              section for examples of the use of the -exec option.  The specified command is run once for each matched file.  The  command  is
              executed  in  the  starting directory.   There are unavoidable security problems surrounding use of the -exec action; you should
              use the -execdir option instead.

       -exec command {} +
              This variant of the -exec action runs the specified command on the selected files, but the command line is  built  by  appending
              each  selected file name at the end; the total number of invocations of the command will be much less than the number of matched
              files.  The command line is built in much the same way that xargs builds its command  lines.   Only  one  instance  of  `{}'  is
              allowed within the command.  The command is executed in the starting directory.

Solution 3 :

Pour des raisons d'efficacité, il est généralement préférable d'utiliser xargs :

$ find /path/to/files -size +2M -print0 | xargs -0 rm

Linux
  1. Comment auditer les autorisations avec la commande find

  2. Quelle est la différence entre la commande locate et find sous Linux

  3. Quelle est la commande unix pour savoir à quel fichier exécutable correspond une commande donnée ?

  4. Quel est le but de cd ` (backtick) ?

  5. A quoi sert l'option -o dans la commande useradd ?

Comment rechercher des fichiers avec la commande fd sous Linux

Trouver la ligne de commande ?

Useradd vs Adduser :quelle est la différence ?

Qu'est-ce que la commande kill sous Linux ?

La commande Linux find Directory :Explication

quelle est la commande la plus fiable pour trouver la taille réelle d'un fichier linux