dtterm to list a folder contents in new window


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers dtterm to list a folder contents in new window
# 1  
Old 05-17-2011
dtterm to list a folder contents in new window

Hi everyone,Smilie

thank you in advance for any help on this

I have a dtterm command to open a new small terminal window with a contents of log, and it works fine.

dtterm -title "my.log" -geometry =40x30+0+550 -fn 6x13 -e tail -n 40 -f /home/logs/user.log &

However what I want to do is list contents of a folder in a new window using dtterm, but cant get it to work.
example of the unix command would be ls /home/logs/

I just can't seem to find a syntax example and the using the man dtterm does not help me.

I tried searching for this on this site before posting.

Thanks again

Golf
# 2  
Old 06-03-2011
I'd suggest something like

Code:
xterm -e "ls /home/logs;bash"

try it out and then we see...
# 3  
Old 06-03-2011
thank you it opens new window but does list

Hello michnmi,

thank you for replying to my question ....Smilie

were getting closer

I tried the code you suggested xterm -e "ls /home/logs;bash"

It opened a new window to the home/logs folder but it acted more like a
cd /home/logs command into a new window, as it did not list that folder's contents. This listing of the folder in a new window is important.

Summary the command opened a new window acting like a cd command
this erro was displayed in the new window
xterm: Can't execvp ls /home/logs;bash

btw
this code xterm -e "ls /home/logs"; gives the same results as
this code xterm -e "ls /home/logs;bash"

I hope I gave good feedback that will help you with the next step.

thank you for helping me with this michnmi

sincerely, Golfcents
# 4  
Old 06-03-2011
xterm is not a shell, just a terminal. When you feed it shell statements, it doesn't know what to do with them because there is no program named "cd wherever ; ls".

If you want xterm to run shell statements, you have to tell it to run a shell.

Code:
xterm -e bash -c "ls /home/logs | less"

# 5  
Old 06-03-2011
Form me it works...

Code:
user@localhost:~$ xterm -version                                          
XTerm(261)
user@localhost:~$

(Solaris 11)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Best way to move the contents of a folder to another one

what is the best way to move the contents of a folder to another one without deleting the structure of the first one. the contents could include subfolder too. both folder, the source-folder and the target-folder are on the same host. any idea is appreciated . (7 Replies)
Discussion started by: andy2000
7 Replies

2. Shell Programming and Scripting

Remove folder contents

for dir in BKP/*/ do echo You are in :$dir done O/P -- BKP/201448/ BKP/201449/ BKP/201450/ BKP/201451/ BKP/201452/ BKP/201501/ BKP/201502/ BKP/201503/ BKP/201504/ BKP/201505/ BKP/201506/ BKP/201507/ (3 Replies)
Discussion started by: rocking77
3 Replies

3. UNIX for Dummies Questions & Answers

Unable to list folder contents

I'm unable to list the contents of a directory once I move into it. I have full permissions on this directory (called "Scripts" in the below example). The scenario is shown below in detail: Command 'ls' works fine to begin with: 1: pmn@linuxhost /home/pmn > cd /opt/smt/proiv 2:... (4 Replies)
Discussion started by: pmn
4 Replies

4. Shell Programming and Scripting

Folder contents getting appended as strings while redirecting file contents to a variable

Hi one of the output of the command is as below # sed -n "/CCM-ResourceHealthCheck:/,/---------/{/CCM-ResourceHealthCheck:/d;/---------/d;p;}" Automation.OutputZ$zoneCounter | sed 's/$/<br>/' Resource List : <br> *************************** 1. row ***************************<br> ... (2 Replies)
Discussion started by: vivek d r
2 Replies

5. Shell Programming and Scripting

How to copy all the contents of a list of files present in a folder to a particular file?

Hi All, I want to copy all the contents of a list of files in a folder to a particular file. i am using following command: cat dir/* >> newFile.txtIt's not working. Could you please help? Thanks, Pranav (3 Replies)
Discussion started by: Pranav Bhasker
3 Replies

6. Shell Programming and Scripting

copy folder and its contents to another folder

Hi experts, I am coming to you with this basic question on copying a folder and its content from one location to another folder using PERL script. This is my requirement. I have a folder AB under /users/myhome I want to copy AB and its contents to /user/workspace. Finally it should... (1 Reply)
Discussion started by: amvarma77
1 Replies

7. Red Hat

GUI help requir Every folder open in new Window..

I am using GUI mode in Linux & face a problem that when ever i double click on any folder it opens in new Window. I want to ask all DP members where is the option to disable this thing.. Means i want when ever i double on folder it should open in the same Window. looking for your help.. (1 Reply)
Discussion started by: salman103
1 Replies

8. UNIX for Dummies Questions & Answers

How to display contents of folder when 'cd' is used

Hi, I am a new learner of Unix. I am currently working on a Solaris 8 machine. Earlier, when I use 'cd <folder name>' command, I am not only able to change the folder but also able to see the contents of the folder as if a 'ls -lt' command was executed. However, since a week, suddenly this... (3 Replies)
Discussion started by: mumashankar
3 Replies

9. UNIX for Dummies Questions & Answers

copy folder contents

I need to make a new dir in side the dir lab5 the new dir is called testLab5 without changing directories copy all files from your lab5 directory into your testLab5 directory then i have to without chaning directories and using exactly one command remove all files that start with the... (1 Reply)
Discussion started by: robsk8_99
1 Replies

10. UNIX for Dummies Questions & Answers

Folder Contents

Hi, I'm trying to allow people to access the contents of a folder on a web site, I am automatically placing files in this folder for people to download. I'm using Apache on Mac OS X, if that makes a difference. Can anyone help with this? I've found no documentation on this so far... ... (6 Replies)
Discussion started by: spencer
6 Replies
Login or Register to Ask a Question