1

I have a directory, let's call it htdocs/live/. Many different directories are underneath this directory, each with a file commonFunctions.js living in the js directory.

For example, here is the structure of a few of the directories containing commonFunctions.js:

htdocs/live/abc123/js/commonFunctions.js
htdocs/live/program1/js/commonFunctions.js
htdocs/live/program2/js/commonFunctions.js
htdocs/live/bunnies/js/commonFunctions.js
htdocs/live/emerald/js/commonFunctions.js

How can I write a command to list each of these files ordering them by the last time they were modified?

bvpx
  • 113
  • 1
  • 5

1 Answers1

2

are you thinking of something like ls -alt htdocs/live/*/js/commonFunctions.js ?

RSchulze
  • 161
  • 1
  • 8
  • 1
    I did not know you could use the `*` in `ls` like that. This is exactly what I needed. – bvpx Oct 14 '13 at 21:11
  • 2
    Incidentally, the `*` is a function of the shell, not `ls`. You can use this with any shell command :) – MattJenko Oct 15 '13 at 07:49