Skip to content
Snippets Groups Projects
Commit 15fc6112 authored by kpetersn's avatar kpetersn
Browse files

Added a workaround for a missing tree command.

parent 5920336f
No related branches found
No related tags found
No related merge requests found
......@@ -111,4 +111,27 @@ $ tree ${EPICS_DIR}
```
</details>
If the **tree** command doesn't exist, there is a workaround:
<details>
<summary>workaround</summary>
The **find** command can be used to show all directories inside a specific directory.
bash
```bash
$ tree() { find $1 -type d | grep -v git; }
```
tcsh
```csh
$ alias tree "find \!* -type d | grep -v git"
```
Once the bash function or tcsh alias is defined, the tree command can be rerun:
```bash
$ tree ${EPICS_DIR}
```
</details>
## [2 Deploy a new IOC](2-IOC-deployment.md)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment