I am trying to update the timestamps of all folders in the cwd using this:
for file in `ls`; do touch $file; done
But it doesn't seem to work. Any ideas why?
I am trying to update the timestamps of all folders in the cwd using this:
for file in `ls`; do touch $file; done
But it doesn't seem to work. Any ideas why?
All the answers so far (as well as your example in the question) assume that you want to touch everything in the directory, even though you said "touch all folders". If it turns out the directory contains files and folders and you only want to update the folders, you can use find:
$ find . -maxdepth 1 -mindepth 1 -type d -exec touch {} +
Or if your find implementation doesn't support the non-standard -mindepth/-maxdepth predicates:
$ find . ! -name . -prune -type d -exec touch {} +
This:
$ touch -c -- */
Should work in most shells except that:
touch symlinks to directories in addition to plain directories* in shells other than csh, tcsh, zsh, fish or the Thompson shell (which would report an error instead). Here, we're using -c to work around it, though that could still touch a non-directory file called *.With zsh, to touch directories only, including hidden ones:
touch -- *(D/)
Try
touch ./*
It avoids the unnecessary for loop which would spawn a new process for every single file and works for all file names, even ones with spaces or ones that look like options (like -t). The only time it wouldn't work is if you have no (non-dot) files in the directory in which case you would end up creating a file named *. To avoid that, for the specific case of touch most implementations have a -c option (also called --no-create in GNU versions) to not create nonexistent files, i.e.
touch -c ./*
See also the good references in jasonwryan's answer as well as this one.
You shouldn't attempt to parse the output of ls.
Also, you should quote your "$file" to capture any whitespace. See http://www.grymoire.com/Unix/Quote.html
Something like this might achieve what you are after:
for file in *; do touch "$file"; done
See the first two Bash Pitfalls for a more thorough explanation.
Just in case you wanted to update the timestamps for all files/directories that descend from that directory try either (note my find here below is an alias for what some systems call gfind, i.e., the gnu version of find).
find ./ -exec touch -am '{}' \;
Or, more efficiently,
for f in **; do touch -am $f; done
The -am means update both access and modification. Note you likely can't just do touch -am ** since you can't run an exec on a list that exceeds getconf ARG_MAX
find . -maxdepth 8 -mindepth 1 -type d -exec touch {} +
What are mindepth and maxdepth levels?
maxdepth levels : Descend at most levels (a non-negative integer) levels of directories below the starting-points. -maxdepth 0 means only apply the tests and actions to the starting-points themselves.
mindepth levels : Do not apply any tests or actions at levels less than levels (a non-negative integer). -mindepth 1 means process all files except the starting-points.
Generally, we don't have directories with depth more than 8. Hence is the above command, I have kept the maxdepth as 8.