lilshan
01-04-03, 13:47
| How can I remover protection mode, user, size in bytes such things? when I use this command : ls -li `find <filename> -type f` |
View Full Version : pattern matching
| How can I remover protection mode, user, size in bytes such things? when I use this command : ls -li `find <filename> -type f` |
| May be you need something like this: ls -li | awk '{ print $10 }' But I donīt know what you want to do. Bye Sebastian |