简体   繁体   中英

list all files in multiple directories

I would like to list all files in a certain directory, and list them with their full path.

I have a series of directories like this:

user.newskims.131017222704/
user.newskims.131017222741/
user.newskims.131017222822/
user.newskims.131017222949/

If I do

ls user.newskims.131017222*

The output has lines like this which I want to eliminate:

user.newskims.131017222822:

It also doesn't give the full path. Is there a way to make it list all of the files inside, and only those files and no additional rows, and with the full path?

您可以使用printf列出具有给定目录完整路径的文件:

printf "$PWD%s\n" user.newskims.131017222/*

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM