Listando arquivos do diretório [closed]

0

Eu tenho uma pergunta sobre diretórios. Minha pergunta de lição de casa é esta:

Use metacharacters and the ls -lL command (with lower and upper case L) to list all filenames under the datafiles directory that contain a dot '.' with the letter 'f' or 'u' anywhere after the dot.

Eu sei que começa ls -lL , mas não sei mais o que colocar.

    
por John 07.02.2018 / 17:05

1 resposta

2

filenames under the datafiles directory that contain a dot '.' with the letter 'f' or 'u' anywhere after the dot.

Se eu fosse adivinhar, seria algo como:

ls -lL datafiles/*.*[fu]*

embora o diretório datafiles possa estar em qualquer lugar (else), e acho um pouco estranho que eles estejam encorajando o uso habitual do -L flag.

    
por 07.02.2018 / 17:36

Tags