By default, tree
shows this:
$ tree
.
├── Package.resolved
├── Package.swift
├── Sources
│ └── SwiftClientSDK
│ ├── OpenAPI.yaml
│ ├── SwiftClientSDK.swift
│ └── openapi-generator-config.yaml
└── Tests
└── SwiftClientSDKTests
└── SwiftClientSDKTests.swift
I would like for it to show the contents of the cwd like this:
Package.resolved
Package.swift
Sources
└── SwiftClientSDK
├── OpenAPI.yaml
├── SwiftClientSDK.swift
└── openapi-generator-config.yaml
Tests
└── SwiftClientSDKTests
└── SwiftClientSDKTests.swift
Nothing I see in the man page suggests this is possible.
tree
? I think you could invoketree
from withinfind
, for example. – preferred_anon Jun 13 '23 at 21:23