How to diply Files that are not ended with .sh


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to diply Files that are not ended with .sh
# 1  
Old 04-01-2008
How to diply Files that are not ended with .sh

Cal any one let me know how to disply the files that are not ended with .sh

Is there any command that to reverse the regular expression.
ls -l *.sh displys all files ended with .sh exactly opposite files(not ended with .sh).
# 2  
Old 04-01-2008
Check the grep manual for the reverse option.

Regards
# 3  
Old 04-01-2008
ls -l | grep -v ".sh"

Note that this will exclude files that have '.sh' ANYWHERE in the file name....
# 4  
Old 04-04-2008
Try this

ls -l | grep -v '\.sh$'
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Automate splitting of files , scp files as each split completes and combine files on target server

i use the split command to split a one terabyte backup file into 10 chunks of 100 GB each. The files are split one after the other. While the files is being split, I will like to scp the files one after the other as soon as the previous one completes, from server A to Server B. Then on server B ,... (2 Replies)
Discussion started by: malaika
2 Replies

2. Shell Programming and Scripting

Find out if a script has ended or still running

I have a script which will run for sometime, i want to monitor it's progress by sending out a mail by runing a infinite loop from command line for eg. this is the script $cat script1.sh #!/usr/bin/ksh i=0 while do sleep 2 echo $i hi i=`expr $i + 1` done > testprog.out ... (5 Replies)
Discussion started by: sam05121988
5 Replies

3. Homework & Coursework Questions

number ended by 0

i have to create a simple program for my programming class and mij ide is giving me some errors. The program has to calculate the number of figures entered by a hid ended by a "0" the code i've written is: // number of numbers.cpp : Defines the entry point for the console application. //... (2 Replies)
Discussion started by: metal005
2 Replies

4. Shell Programming and Scripting

Finding process which ended another process

Hello, The scenario is as follows, I have a background process running initially for which i know the PID on machine1. I use ssh from machine 2 to execute a script in machine 1. For some reason the back ground process is terminated. I would like to know which process caused the... (6 Replies)
Discussion started by: prasbala
6 Replies

5. UNIX for Dummies Questions & Answers

Process which ended another process

Hello, The scenario is as follows, I have a background process running initially for which i know the PID on machine1. I use ssh from machine 2 to execute a script in machine 1. For some reason the back ground process is terminated. I would like to know which process caused the ... (1 Reply)
Discussion started by: prasbala
1 Replies

6. Shell Programming and Scripting

Testing a process has ended (in the background)

Hi guys. Hopefully this question will make sense! Continuing on my script to automatically copy some huge files across the network onto various servers as background jobs, I need to be able to check that each job has finished successfully. The script below shows what I want - almost. The... (2 Replies)
Discussion started by: dlam
2 Replies

7. Shell Programming and Scripting

problem in using cat and ended up with no space error in aix

While doing cat on a large file (3 GB file) , I am getting the no space error in the shell script hugefile.sh. Eg: for i in `cat hugefile.txt` do echo "$i" done error: hugefile.sh: no space Please let me know your thoughts in handling this no space issue. (2 Replies)
Discussion started by: techmoris
2 Replies

8. Shell Programming and Scripting

How to retrieve all the linked script files/ctl files/sql files?

Hi I am going to migrate our datawarehouse system from HP Tru 64 Unix to the Red Hat Linux. Inside the box, it is running around 40 cron jobs; inside each cron job, it is calling other shell script files, and the shell script files may again call other shell script files or ctl files(for... (1 Reply)
Discussion started by: franksubramania
1 Replies

9. Linux

Why had the OpenMosix project ended?

I want to build a load-balancing cluster and I the multiprocess support then I read: 'Any single program that can run as multiple processes can benefit from OpenMosix: "The GIMP" photo editor and the "kandel" fractal generator are known to do this. Unless I can find a load-balancing cluster... (1 Reply)
Discussion started by: Advice Pro
1 Replies

10. Linux

Installing Firefox and now ended up installing latest glibc

Hi all, I wanted to install the latest version of firefox 2 but it seems when I attempt to install it, it seems to be saying it is looking for c libraries version 2.3? I believe I currently have an older version of the c libraries. I am currently running Sun's JDS Linux 2003. My Mozilla web... (1 Reply)
Discussion started by: scriptingmani
1 Replies
Login or Register to Ask a Question