LS with spaces


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers LS with spaces
# 1  
Old 05-23-2005
LS with spaces

Hi! I'm fairly new to UNIX so don't mention that my question is stupid.

I have many problems with spaces in folders and files names.

Let's say I have the following files:
toto.txt
this is toto.txt

in /usr/local/this is a test/

Why the following commands works:

ls "/usr/local/this is a test/"

but not this one

ls "/usr/local/this is a test/*.txt"

Also, if I have the same 2 files in /usr/local/test/

Why the following commands works

ls /usr/local/test/*.txt

but not this one

ls "/usr/local/test/*.txt"

I'm on AIX 5.2 if it can helps

Thanks!
# 2  
Old 05-23-2005
I think

I think I have found the solution. With LS, if you add " " in a filename, UNIX searches for the exact name between the " ".

So if you type: ls "/usr/local/this is a test/*.txt"; UNIX searchez for a file named *.txt (ignoring the wildcard) in /usr/local/this is a test/.

I have try this command: ls "/usr/local/this is a test/"*.txt and now UNIX searches with the wildcard *.

Correct me if my logic is wrong.

Thanks and excuse me for my poor english.
# 3  
Old 05-25-2005
ls /usr/local/this is a test/*.txt

when you give the above command , it is expecting
"this" "is" "a" as files or directory files

and test as directory and trying to list txt files in it.

Since none of them exists, you have problems.


by enclosing them in " ls is listing txt files in "/usr/local/this is a test/"
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to avoid the spaces?

Hi I have a script which runs the isql command and takes the output in a xls file. Is there a way to trim the spaces(leading and trailing) from all the values in the column of the xls sheet? (6 Replies)
Discussion started by: Sharma331
6 Replies

2. Shell Programming and Scripting

Spaces

Input: TCAMPBMG0064X344F4E1 1 47552 85.280 557.600 11300 TCAMPBMG0064X352F8E1 1 61265 85.280 718.400 11463 TCAMPBMG0064X344F4E1 1 47552 85.280 557.600 11300 TCAMPBMG0064X352F8E1 1 61265 ... (2 Replies)
Discussion started by: satish1222
2 Replies

3. Shell Programming and Scripting

Spaces in variables

I'm having a problem with this.... --------------------------------------------------- #!/bin/bash SPKTAG=" | festival --tts" echo "Welcome to my shell program" "$SPKTAG"; --------------------------------------------------- I have a variable call SPKTAG " | festival --tts" and I... (2 Replies)
Discussion started by: digitalviking
2 Replies

4. Shell Programming and Scripting

replace 2 spaces by one

Dear Friends, I have a flat file from which I want to remove single "space". And, wherever two spaces are provided it should replace it by only one space. E.g. I have N A T I O N A L E D U C A T I O N F O R O R G AN I S A T I ON S I want NATIONAL EDUCATION FOR ORGANISATIONS Please... (5 Replies)
Discussion started by: anushree.a
5 Replies

5. Shell Programming and Scripting

Removing blank spaces, tab spaces from file

Hello All, I am trying to remove all tabspaces and all blankspaces from my file using sed & awk, but not getting proper code. Please help me out. My file is like this (<b> means one blank space, <t> means one tab space)- $ cat file NARESH<b><b><b>KUMAR<t><t>PRADHAN... (3 Replies)
Discussion started by: NARESH1302
3 Replies

6. Shell Programming and Scripting

Remove Spaces

Hi All, I have a comma seperated file. I wanna remove the spaces from column 2. I mean i don't wanna remove the spaces those are presnt in column 1. ex: emp name, emp no, salary abc k, abc 11, 1000 00 bhk s, bhk 22, 2000 00 the output should be: emp name, emp no, salary abc k, abc11,... (4 Replies)
Discussion started by: javeed7
4 Replies

7. UNIX for Dummies Questions & Answers

how to append spaces(say 10 spaces) at the end of each line based on the length of th

Hi, I have a problem where I need to append few spaces(say 10 spaces) for each line in a file whose length is say(100 chars) and others leave as it is. I tried to find the length of each line and then if the length is say 100 chars then tried to write those lines into another file and use a sed... (17 Replies)
Discussion started by: prathima
17 Replies

8. UNIX for Advanced & Expert Users

Trimming the spaces

Hi, How can I remove the unwanted spaces in the line. 123456 789 ABC DEF. - I wanna remove the sapces in this line, I need the output 123456789ABCDEF. Pls help me...... (3 Replies)
Discussion started by: sharif
3 Replies

9. Shell Programming and Scripting

Why am I getting spaces when there is none??!!

param_data=`sqlplus -S $USER/$PASSWRD@$SCHEMA << EOF SET ECHO OFF NEWP 0 SPA 0 PAGES 0 FEED OFF HEAD OFF TRIMS ON VARIABLE param_data VARCHAR2(1000); WHENEVER SQLERROR EXIT SQL.SQLCODE ROLLBACK; SELECT INTERFACE_ID || '|' || PARAM_FILE || '|' || SESSION_NAME || '|' || PARAM_NAME ||... (2 Replies)
Discussion started by: Nomaad
2 Replies

10. Shell Programming and Scripting

Strip leading and trailing spaces only in a shell variable with embedded spaces

I am trying to strip all leading and trailing spaces of a shell variable using either awk or sed or any other utility, however unscuccessful and need your help. echo $SH_VAR | command_line Syntax. The SH_VAR contains embedded spaces which needs to be preserved. I need only for the leading and... (6 Replies)
Discussion started by: jerardfjay
6 Replies
Login or Register to Ask a Question