我不希望我的计算机的输出更改为特定接收器(有时接收器会在重新启动时切换)。
我无法将接收器固定为恒定,因为我希望在连接蓝牙耳机时更改默认接收器。
这是我不想连接的水槽 -
index: 1
name: <alsa_output.pci-0000_01_00.1.hdmi-stereo>
driver: <module-alsa-card.c>
flags: HARDWARE DECIBEL_VOLUME LATENCY DYNAMIC_LATENCY
state: IDLE
suspend cause: (none)
priority: 9030
volume: front-left: 71984 / 110% / 2.45 dB, front-right: 71984 / 110% / 2.45 dB
balance 0.00
base volume: 65536 / 100% / 0.00 dB
volume steps: 65537
muted: no
current latency: 1496.34 ms
max request: 344 KiB
max rewind: 344 KiB
monitor source: 1
sample spec: s16le 2ch 44100Hz
channel map: front-left,front-right
Stereo
used by: 0
linked …
Run Code Online (Sandbox Code Playgroud) x
我想使用 macOS 终端在特定子目录中查找目录y
,但我不知道y
.
该命令find / -type d -name "x"
适用于查找,但系统中x
有许多命名的目录,因此我需要查找该目录下的目录。x
x
y
我试过 -
find / -type d -name "/y/x"
或者 find / -type d -name "y/x"
或者 find / -type d -name "../y/x"
但这些并没有告诉我想要的结果。