You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- function lsdir()
- {
- for i in `ls`;
- do
- if [ -d $i ]
- then
- pushd ./$i
- lsdir
- popd
- else
- unix2dos $i
- fi
- done
- }
- cd $1
- lsdir
|