如何在curl命令中不列出“。”和“ ..”:“ curl -l ftp:”

问题描述 投票:0回答:1

命令:curl -l ftp://test:test@test/test/

任务:不列出“ .”和“ ..”]

输出:

.
..
test.txt
test_2.txt

所需的输出:

test.txt
test_2.txt
bash shell curl ftp
1个回答
0
投票

使用GNU sed。我建议将此命令附加到后面以删除仅包含一个或两个点的行:

| sed -r '/^\.{1,2}$/d'

参见:The Stack Overflow Regular Expressions FAQ

© www.soinside.com 2019 - 2024. All rights reserved.