954,546 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Full screen prob

Hi all,
i'm new in linux environment and have a v. tough task. Please help me how to initiate it.
give me some expample scripts..
the prob def is :

* i am trying to write a full-screen utility, that displays the permissions of a directory and all the directories in the directory's path. it will also show other information about the directories, as the cursor is moved up and down the list of directory names.
* i'm also using a Windows telnet session, because that is how I will be testing the script. I use the Windows version of QVT/Term.

please tell me how to solve this prob..

jackjill
Newbie Poster
3 posts since Nov 2004
Reputation Points: 10
Solved Threads: 0
 

I cannot get the full screen either by the view icon or the screen icon

ruthridgeway
Newbie Poster
3 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

script:

# $1 = path to examine
# usage
# myscript /path

find "$1" -type d -print |\
while read file
do
       permissions=$(ls -l $file | awk '{print $1}')
       echo "$permissions $file"
done
jim mcnamara
Junior Poster
180 posts since May 2004
Reputation Points: 62
Solved Threads: 10
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You