diff options
Diffstat (limited to '')
| -rw-r--r-- | bash/aliases | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/bash/aliases b/bash/aliases index 140f958..d978492 100644 --- a/bash/aliases +++ b/bash/aliases @@ -51,6 +51,12 @@ forever () {  	done  } +# DESCRIPTION:  Recursive touch all files in the current working directory +# USAGE:        touch-all <extra arguments for find> +touch-all () { +	find -print0 "$@" | xargs -0 touch +} +  #DESCRIPTION:  ls with long listing, classification with appendix character, hidden files and the . and .. directories  alias ll='ls -alF' | 
