In linux, complete the following command that finds all python files in current directory (and subdirectories below) and deletes them:
find . -name '*.py' [...]
find . -name '*.py' | xargs rm
^^ note the use of xargs (i.e. how xargs takes all the output from find, seperates it by whitespace/newline, and feeds it to the rm command, one by one, as command line args)
In linux, complete the following command that finds all python files in current directory (and subdirectories below) and deletes them:
find . -name '*.py' [...]
In linux, complete the following command that finds all python files in current directory (and subdirectories below) and deletes them:
find . -name '*.py' [...]
find . -name '*.py' | xargs rm
^^ note the use of xargs (i.e. how xargs takes all the output from find, seperates it by whitespace/newline, and feeds it to the rm command, one by one, as command line args)
status | not learned | measured difficulty | 37% [default] | last interval [days] | |||
---|---|---|---|---|---|---|---|
repetition number in this series | 0 | memorised on | scheduled repetition | ||||
scheduled repetition interval | last repetition or drill |