* in end of filename


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting * in end of filename
# 1  
Old 03-12-2012
* in end of filename

Hi,

i have some files which looks like given below:
Code:
-rwxrwxrwx   1 amsbatch ams         1608 Oct 22  2009 AMS_BATCH_COMPILE*
-rwxr-----   1 amsbatch ams         1608 Oct 22  2009 AMS_BATCH_COMPILE_original*
-rwxrwxrwx   1 amsbatch ams         1127 Dec  1  2005 AMS_LMU.sh*
drwxr-xr-x   2 amsbatch ams          512 Mar 12 11:01 AMS

in some of file after filename * (star) is appended and it also exists for .sh file.

Could you please help me out what * signifies in the end and how a sh* differ from sh file.

Last edited by methyl; 03-12-2012 at 11:18 AM.. Reason: please use code tags
# 2  
Old 03-12-2012
What Operating System and version you you have and what Shell do you use?

What did you type in order to get this output from "ls"?

It looks a bit like ls -laF which highlights executable files with an asterisk but that would also append a solidus to directories.
It is of course possible for the filenames to contain the asterisk.
# 3  
Old 03-12-2012
* indicates a executable file....

you can find that by running the below command :

$ ls -F
# 4  
Old 03-12-2012
My system even has a hardlink to "ls" called:
Code:
lsf

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Copy filepath along with filename at end of another file

Hi , Please help me out for the below problem - I have 2 files in a directory - $ ls -ltr total 4 -rwx------+ 1 abc Domain Users 615 May 31 17:33 abc.txt -rwx------+ 1 abc Domain Users 0 May 31 17:33 ll.sh I want to write the filename of abc.txt along with the directory to the... (2 Replies)
Discussion started by: Pratik4891
2 Replies

2. UNIX for Dummies Questions & Answers

[Solved] Appending beginning of filename to end

Hi Guys, I have serveral directories like this: (2013) blablabla(blabla) - blabla (blabla) or (1997) blablabla(blabla) - blabla (blabla) and have to rename them to something like that: blablabla(blabla) - blabla (blabla) (2013) and blablabla(blabla) - blabla (blabla) (1997) Easy... (2 Replies)
Discussion started by: Nateshift
2 Replies

3. UNIX for Dummies Questions & Answers

Yum gives error : filename does not end in .rpm.

Hi there /root #yum localinstall sg3_utils Loaded plugins: product-id, refresh-packagekit, subscription-manager Updating Red Hat repositories. Setting up Local Package Process Skipping: sg3_utils, filename does not end in .rpm. Nothing to do /root # above is the error /root... (6 Replies)
Discussion started by: heman96
6 Replies

4. Shell Programming and Scripting

Help Needed! - Cut characters after a text string and append to end of filename

Hi all.. I have several unique files that contain one thing in common, and that is acct#. For all files in the directory, I want to append the 10 characters following the word "ACCOUNT:" to the end of the filename. for example: I have file 111_123 that contains ACCOUNT:ABC1234567 The file... (5 Replies)
Discussion started by: cinderella1
5 Replies

5. UNIX for Dummies Questions & Answers

* at the end of filename after chmod

Have you seen this before on Solari? Create file -> chmod file-> file gets a * at the end of filename Ex1) gate@server1# ll total 8 drwxr-xr-x 2 stdbgate dba 512 Jan 18 14:30 ./ drwxr-xr-x 3 stdbgate dba 512 Jan 18 14:18 ../ -rw-r--r-- 1 stdbgate dba ... (3 Replies)
Discussion started by: drbiloukos
3 Replies

6. Shell Programming and Scripting

sed script to remove nth characters from end of filename

Hi all, I have this basic script to remove, in this case 9 characters from the end of a file name. This is what I have so far, for file in *.mov do newname=`echo $file | sed 's/\(.*\)........./\1/' ` mv "$file" "$newname" done The problem is that it removes the file extension as well.... (2 Replies)
Discussion started by: Monkey Dean
2 Replies

7. Shell Programming and Scripting

Script to delete text from the end of a filename

Hi all, I am trying to write a script that will delete a certain amount of text from the end of a filename. For example. Input: name of file (more text).pdf Output: name of file.pdf So is it possible to write a script the deletes, in this example twelve (12) digits from the end... (6 Replies)
Discussion started by: Monkey Dean
6 Replies

8. Shell Programming and Scripting

How to remove a newline character at the end of filename

Hi All, I have named a file with current date,time and year as follows: month=`date | awk '{print $2}'` date=`date | awk '{print $3}'` year=`date | awk '{print $6}'` time=`date +%Hh_%Mm_%Ss'` filename="test_"$month"_"$date"_"$year"_"$time".txt" > $filename The file is created with a... (2 Replies)
Discussion started by: amio
2 Replies

9. Shell Programming and Scripting

How to add filename to the end of each line in file

Hi, I'm reading data from comma separated files to DB. Now there is a need to have the name of the input file in each row of that file. How can I do this in unix script? Example: $cat file1 value11,value12, value,13 value21,value22, value,23 value31,value32, value,33 And the result... (2 Replies)
Discussion started by: tmikahan
2 Replies

10. Shell Programming and Scripting

Grabing Date from filename and adding to the end of each line in the file.

Hi, I have 24 .dat files something like below. The file name starts with “abc” followed by two digit month and two digit year. Is there a way to grab the month and year from each filename and append it to the end of each line. Once this is done I want to combine all the files into file... (1 Reply)
Discussion started by: rkumar28
1 Replies
Login or Register to Ask a Question