Full screen prob

Reply

Join Date: Nov 2004
Posts: 3
Reputation: jackjill is an unknown quantity at this point 
Solved Threads: 0
jackjill jackjill is offline Offline
Newbie Poster

Full screen prob

 
0
  #1
Nov 26th, 2004
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..
Reply With Quote Quick reply to this message  
Join Date: Dec 2006
Posts: 3
Reputation: ruthridgeway is an unknown quantity at this point 
Solved Threads: 0
ruthridgeway ruthridgeway is offline Offline
Newbie Poster

Re: Full screen prob

 
0
  #2
Dec 28th, 2006
I cannot get the full screen either by the view icon or the screen icon
Reply With Quote Quick reply to this message  
Join Date: May 2004
Posts: 177
Reputation: jim mcnamara is on a distinguished road 
Solved Threads: 10
jim mcnamara jim mcnamara is offline Offline
Junior Poster

Re: Full screen prob

 
0
  #3
Jan 4th, 2007
script:
Shell Scripting Syntax (Toggle Plain Text)
  1. # $1 = path to examine
  2. # usage
  3. # myscript /path
  4.  
  5. find "$1" -type d -print |\
  6. while read file
  7. do
  8. permissions=$(ls -l $file | awk '{print $1}')
  9. echo "$permissions $file"
  10. done
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Shell Scripting Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC