extension problem please help


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers extension problem please help
# 1  
Old 10-24-2007
extension problem please help

I am executing a program wp1s0000.sh_old and it is executing as expected irrespective of the extension "sh_old"

how is this possible ??
# 2  
Old 10-24-2007
In Unix, the extension or filename does not determine whether the file is executable or not. Type
Code:
file wp1s0000.sh_old

to know the actual type of the file. Note that name may be misleading in some cases.

Also, check for access permissions and particularly the x (execute) permission. Use chmod command to change access permissions of a file.

Last edited by Yogesh Sawant; 10-24-2007 at 08:31 AM.. Reason: added reference to chmod command
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Zipping without extension

I currently have a code that find and zip all files in current folder and zip it, the problem is the name of the zip will include the extension as well and I don't want it. for ex: Volvo-red.swf -> Volvo-red.swf.zip find . -maxdepth 1 -type f ! -name ".*" -exec bash -c 'zip -r "$0.zip"... (6 Replies)
Discussion started by: Frozen77
6 Replies

2. UNIX for Dummies Questions & Answers

Display the .csv extension files based on .done extension fine

Hi All, I want to fetch the files based on .done file and display the .csv files and Wil take .csv files for processing. 1.I need to display the .done files from the directory. 2.next i need to search for the .Csv files based on .done file.then move .csv files for the one directory ... (2 Replies)
Discussion started by: girija.g6
2 Replies

3. Shell Programming and Scripting

Length extension

Ok I have a PERL script that reads an .xml file. One of the new services listed in the file, is alot longer than the others. I am trying to get a way for the spaces of the Service module to read the .xml file and set the length of the %s to the longest Service my $jmsfn = "jms-connection.xml"; ... (2 Replies)
Discussion started by: bigbenn
2 Replies

4. Shell Programming and Scripting

How to print this out without a extension?

i have a file abc.dat that has the below content abc.dat: - 123.dat now, i want to print/output only the below 123 from the file content.( see..i want to chop off .dat extension) kindly advise on this in ksh- i just want to the flag i should pass to the cat command - (2 Replies)
Discussion started by: billpeter3010
2 Replies

5. Shell Programming and Scripting

Getting the file extension

I have a file n06-z30-sr65-rgdt0p25-varp0.25-8x6drw-test.cmod and I want to get the extension. At the moment I have set filextension = `echo $f | awk 'BEGIN {FS="."} {print $2}'` which of course does not work as there is a point in varp0.25 (13 Replies)
Discussion started by: kristinu
13 Replies

6. Shell Programming and Scripting

Look for more then one extension.

I am currently scanning a directory with a shell script to look for all files with a .sh extension. I am wondering how to make it look for more then one extension. For example all .sh, .conf, and .sql files? Currently this is what I am doing.... find... (3 Replies)
Discussion started by: LRoberts
3 Replies

7. UNIX for Dummies Questions & Answers

without extension

Hi, I need a help regarding a small requirement. I have a list of C files. I need to put them in a file but without .c extension. say if I have the files as file01.c, file02.c, file03.c etc My file say cfiles should have file01 file02 file03 ... ... etc Appreciate your quick help on... (3 Replies)
Discussion started by: adurga
3 Replies

8. Shell Programming and Scripting

Changing extension

Hi , I need to replace the file name extension with txt to csv,i wrote the below script when executing its giving the below error.Please anyone how to do this? $ a2.sh mv: *.: cannot access: No such file or directory ./a2.sh: o: bad number $ vi a2.sh a2.sh ----- #!/bin/ksh txt=$1... (4 Replies)
Discussion started by: mohan705
4 Replies

9. UNIX for Dummies Questions & Answers

Problem for extension .fs in Linux

Hi, My company has a RH Linux AS server ( Linux 2.4.21-27.0.2.ELsmp ). I'm currently writing some shell scripts. I observed that if I vi a file with .fs extension. It prompts me the following error: "123.fs" 0L, 0C W18: Invalid character in group name If I vi... (3 Replies)
Discussion started by: donaldfung
3 Replies

10. Shell Programming and Scripting

How to change extension?

How do you write a shell script that change the extension of all the files? e.g chext rtf doc where .rtf is the original extension and .doc is the new extension is it something to do with basename? do I need a for loop? Please help! Unix SuperNewbie (4 Replies)
Discussion started by: prkwan
4 Replies
Login or Register to Ask a Question