hi all. I just only wanna show all files from a whole 'root-table'....to understand:
"ls *.exe" ...for instance in the directory it only shows the files from the folder, but not form the subfolders !? how to solve this problem ? if you are on your home /root/users/.... I want to see all files with this extension..
it's a chance to write "ls -R" ..so it shows all files from the subfolders, but not only the files with the extensions (*.exe).....
my second question - it is possible to get automatic folders? for example, when you wanna make the same subfolders in another folder...for instance you can write the directory in a file "pwd > file" but if you wanna make "mkdir <file" it doesn't work - is there a chance to get this pipe working?
thanks a lot for a help..and nice greetings from germany
I'm sorry. I didn't know that the different types of tickmarks are so important...secondary I'm using Unix on another System (so I've to deal with vi).
�
`
"
'
mkdir -p `cat file1`
I'll try it tomorrow again and write you back. Today UNIX is out and over, break.
I just don't wanna create hundreds of subfolders.....more like "reading folders and writing folders", like a batch or so....not knowing how the subfolders all are called
some missing marks (/ `) made it a little bit difficult..
...
pwd>file1
sed -e �s/test1/test2/� file1>file2
mkdir -p `cat file2`
...
read fold1
echo "$fold1" >file1
...
find . -name "*.exe" -mtime -1
...