TIL you can pass multiple paths to lslike you can do ls -al folder1 folder2 and it'll list the contents of folder1 and then folder2
Uncategorized
2
Posts
2
Posters
1
Views
-
TIL you can pass multiple paths to
ls
like you can do
ls -al folder1 folder2
and it'll list the contents of folder1 and then folder2 -
TIL you can pass multiple paths to
ls
like you can do
ls -al folder1 folder2
and it'll list the contents of folder1 and then folder2@theresnotime Want something really neat?
In a directory which contains subdirectories with files in them, try:
$ echo */*
(This works because the *shell* does the wildcard expansion before invoking the command.)
-