* at the end of filename after chmod


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers * at the end of filename after chmod
# 1  
Old 01-18-2012
* 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

Code:
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          477 Jan 18 14:29 gg_abend.sh
-rw-r--r--   1 stdbgate dba          563 Jan 18 14:30 gg_info_all.sh
gate@server1# chmod 744 *.sh
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 ../
-rwxr--r--   1 stdbgate dba          477 Jan 18 14:29 gg_abend.sh*
-rwxr--r--   1 stdbgate dba          563 Jan 18 14:30 gg_info_all.sh*
 
 
Ex2)
 
gate@server1# touch test_file.anything
gate@server1# ll
total 12
drwxr-xr-x   2 stdbgate dba          512 Jan 18 14:42 ./
drwxr-xr-x   3 stdbgate dba          512 Jan 18 14:18 ../
-rwxr--r--   1 stdbgate dba          491 Jan 18 14:34 gg_abend.sh*
-rwxr--r--   1 stdbgate dba          563 Jan 18 14:30 gg_info_all.sh*
-rw-r--r--   1 stdbgate dba         1864 Jan 18 14:34 gg_info_all.tmp
-rw-r--r--   1 stdbgate dba            0 Jan 18 14:34 test.log
-rw-r--r--   1 stdbgate dba            0 Jan 18 14:42 test_file.anything
gate@server1# chmod 744 test_file.anything
gate@server1# ll
total 12
drwxr-xr-x   2 stdbgate dba          512 Jan 18 14:42 ./
drwxr-xr-x   3 stdbgate dba          512 Jan 18 14:18 ../
-rwxr--r--   1 stdbgate dba          491 Jan 18 14:34 gg_abend.sh*
-rwxr--r--   1 stdbgate dba          563 Jan 18 14:30 gg_info_all.sh*
-rw-r--r--   1 stdbgate dba         1864 Jan 18 14:34 gg_info_all.tmp
-rw-r--r--   1 stdbgate dba            0 Jan 18 14:34 test.log
-rwxr--r--   1 stdbgate dba            0 Jan 18 14:42 test_file.anything*


Thank you in advance
# 2  
Old 01-18-2012
It gets a * when it becomes executable not because of chmod, try chmod 644 and compare the result...
This User Gave Thanks to vbe For This Post:
# 3  
Old 01-18-2012
So is this a setting in my .profile or in my unix env ?
# 4  
Old 01-18-2012
your ll is an alias to ls -lF the -F option causes ls to display a trailing identifier as to the nature of the file the alias is probably in your .profile, .bash_profile or .bashrc file
This User Gave Thanks to Skrynesaver For This Post:
 
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. Shell Programming and Scripting

* in end of filename

Hi, i have some files which looks like given below: -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... (3 Replies)
Discussion started by: mann2719
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