Help with modifying a filename


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with modifying a filename
# 15  
Old 11-04-2014
Quote:
Originally Posted by Aia
It is hard to see but that's a dash number one, and not a dash `el'
ls -1 XV4_*
Thanks you are right, it worked with a ls -1 not l....new to this, never used ls -1 before. I need to go find out the difference
# 16  
Old 11-04-2014
Note: ls -1 is the same as ls, when the output is not a terminal, so the -1 option is unnecessary here.
# 17  
Old 11-04-2014
Quote:
Originally Posted by Scrutinizer
Note: ls -1 is the same as ls, when the output is not a terminal.
hmmm what does not a terminal mean?

Also the command I ran changed it in the response...but not permanently so when I do a ls -l I still see the old name, even though the command seemed to have changed it from the response
# 18  
Old 11-04-2014
When we issue the command
Code:
ls

the output is to a terminal and it looks something like this:
Code:
$ ls
file1	file12	file15	file18	file20	file23	file3	file6	file9
file10	file13	file16	file19	file21	file24	file4	file7
file11	file14	file17	file2	file22	file25	file5	file8

But when we output the command to a file or a pipe for example, the output looks like this:

Code:
$ ls | cat
file1
file10
file11
file12
file13
file14
file15
file16
file17
file18
file19
file2
file20
file21
file22
file23
file24
file25
file3
file4
file5
file6
file7
file8
file9

Here ls is the same as ls -1
This User Gave Thanks to Scrutinizer For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Solved] Modifying/Removing Timestamps from a filename

So given filenames of varying lengths, I was wondering how I would remove or modify appended timestamps of the current date DD-MM-YY. So say: test_DD-MM-YY.txt coolbeans_DD-MM-YY.pdf And what I expect the output to be: test.txt coolbeans.pdf Thanks :) (2 Replies)
Discussion started by: sodaboyz
2 Replies

2. Shell Programming and Scripting

Modifying the .bashrc

I have modified the .bashrc. The problem is that when I write a long command, it does not write on the next line but continues to write on the same line. # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for... (1 Reply)
Discussion started by: kristinu
1 Replies

3. Programming

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My code: if then set "subscriber" "promplan" "mapping" "dedicatedaccount" "faflistSub" "faflistAcc" "accumulator"\ "pam_account"; for i in 1 2 3 4 5 6 7 8;... (0 Replies)
Discussion started by: aealexanderraj
0 Replies

4. UNIX for Dummies Questions & Answers

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My Requirement: 1) There are some set of files in a directory like given below OTP_UFSC_20120530000000_acc.csv OTP_UFSC_20120530000000_faf.csv OTP_UFSC_20120530000000_prom.csv... (0 Replies)
Discussion started by: aealexanderraj
0 Replies

5. Post Here to Contact Site Administrators and Moderators

Modifying old post

If I had posted the organisations server name by overlook and people replied to my post. Later on realising that I had shared some info that should not have been, how can I remove or delete such info from my previous posts? (4 Replies)
Discussion started by: mohtashims
4 Replies

6. Shell Programming and Scripting

modifying a row

I want to modify a file by deleting certain characters. The file looks like this: >ctg86 org=S_bayanus] moltype=genomictg] ctgontig=ctg86] RRRRRRRRRRRRRRRRRRRRRRRRRRRRTTTTTTTTTTTTTTTTTTTTTTTYYYYYYYYYYYYYYYYYYYYFFFFFFFFFFFGGGGGGGGGHHHHH >ctg86 org=S_bayanus] moltype=genomictg] ctgontig=ctg86]... (4 Replies)
Discussion started by: phil_heath
4 Replies

7. Shell Programming and Scripting

Filename from splitting files to have the same filename of the original file with counter value

Hi all, I have a list of xml file. I need to split the files to a different files when see the <ko> tag. The list of filename are B20090908.1100-20090908.1200_CDMA=1,NO=2,SITE=3.xml B20090908.1200-20090908.1300_CDMA=1,NO=2,SITE=3.xml B20090908.1300-20090908.1400_CDMA=1,NO=2,SITE=3.xml ... (3 Replies)
Discussion started by: natalie23
3 Replies

8. Shell Programming and Scripting

rename multiple filename.45267.txt to >> filename.txt

i have several thousand files and in subdirs that are named file.46634.txt budget.75346.pdf etc i want to remove the number but retain the extension. it is always a 5 digit. thanks. (6 Replies)
Discussion started by: jason7
6 Replies

9. Shell Programming and Scripting

gzcat into awk and then change FILENAME and process new FILENAME

I am trying to write a script that prompts users for date and time, then process the gzip file into awk. During the ksh part of the script another file is created and needs to be processed with a different set of pattern matches then I need to combine the two in the end. I'm stuck at the part... (6 Replies)
Discussion started by: timj123
6 Replies

10. UNIX for Dummies Questions & Answers

shortcut for tar cvf - [filename] | gzip > [filename].tar.gz

i'd like to have an alias (or something similar) where i can type a command like "archive" and a filename and have it tar and gzip the file, so... $ archive filename results in filename.tar.gz...do i have to write a script to do this? (4 Replies)
Discussion started by: bcamp1973
4 Replies
Login or Register to Ask a Question