| | |
Full screen prob
![]() |
•
•
Join Date: Nov 2004
Posts: 3
Reputation:
Solved Threads: 0
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..
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..
•
•
Join Date: May 2004
Posts: 178
Reputation:
Solved Threads: 10
script:
Shell Scripting Syntax (Toggle Plain Text)
# $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
![]() |
Similar Threads
- 16-bit application in full screen (Windows Vista and Windows 7)
- full screen applet in java (Java)
- Why can't I view "full screen" in Preview? (Mac Software)
- Full screen (JavaScript / DHTML / AJAX)
- Full Screen (Java)
Other Threads in the Shell Scripting Forum
- Previous Thread: Shell Script fails with "can't connect to client"
- Next Thread: two variable sin single loop
| Thread Tools | Search this Thread |





