There a lot of command that could be used with recursive option in UNIX type operating systems and even Windows. For example we want to list of files and folders inside current folder but we want to list and all subfolder and even subsubfolders and etc. For this we will have to use recursive option.
Example:
Command: ls -laR
Return:
-rw-r--r--@ 1 david staff 373 Bal 26 18:13 add.sh
-rw-r--r-- 1 david staff 31 Bal 26 18:12 even.txt
drwxr-xr-x 3 david staff 102 Kov 20 18:46 ruby
drwxr-xr-x 2 david staff 68 Bal 15 07:24 C
./folder:
total 0
drwxr-xr-x 2 david staff 68 Bal 26 16:55 .
drwxr-xr-x 16 david staff 544 Bal 26 18:11 ..
./ruby:
total 8
drwxr-xr-x 3 david staff 102 Kov 20 18:46 .
drwxr-xr-x 16 david staff 544 Bal 26 18:11 ..
-rwxr-xr-x@ 1 david staff 181 Kov 20 18:59 test.rb
As you can see it not only listed files from active directory, but also listed and files from other two directories that are located in active directory.
There are many programs that allows this kind of recursion (usually it will be -R option) and some even will allow to limit the depth you want. In order to find out which commands support recursive option you need to read each command manual pages, which could be in internet or in system by writing in console: man
Chat with our AI personalities
GNU is a Unix-like computer operating system developed by the GNU Project. GNU is a recursive acronym for "GNU's NOT UNIX".
UNIX command to display the current datedate +'%d/%m/%Y'Niraj sharma
Utilities are programs that can run or execute. Commands are slightly different than utilities. Command refers to the name of the program and any arguments you specify to that program to change its behavior.
Traditionally, the UNIX command interface was the only way to communicate within a UNIX system. Today, that is not true, with the graphical interfaces that are available. However, the true power of what you can do within UNIX is still in the command line interface. The command line interface is not very intuitive, and uses commands that are abbreviated to the point of not necessarily being understandable. Also, system administration tasks in Unix have typically been harder to accomplish because of the amount of background knowledge necessary even to do simple things. UNIX was developed early on for programmers by programmers, and little thought was given to the end user; as a result, it had a reputation of being difficult to use until you took the time to understand the (admittedly) arcane command line interface.
In UNIX: with command kill, in Windows: from Task Manager.