Rename file called "-X"??


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Rename file called "-X"??
# 1  
Old 03-14-2011
Question Rename file called "-X"??

Hi all,

So I have found a file literally called "-X" in a folder, that is preventing me from using any meaningful commands in that folder because, as I understand it, at command runtime it will convert any wildcard characters into matching filenames, thus a command such as:
Code:
ls *

Ends up actually doing:
Code:
ls -X

Because the -X file is the first one in the folder...which is not a valid argument for ls. And thats what SunOS tells me. This happens with every command I've tried so far. The nature of this problem has also made it difficult for me to google for answers, so I'm hoping someone here can help me with an explanation or a way to rename this file! Here's some examples of my troubles:

Code:
root@qmgt2 # ls -al
total 3695918
-rw-r-----   1 root     other    1771857920 Nov 14  2006 -X
dr-xr-xr-x  22 bin      bin          512 Mar 29  2010 .
drwxr-xr-x  48 root     root        2048 Feb 24 12:41 ..
drwxr-x---   2 root     other        512 Mar  9  2005 APP_BACKUPS
drwxr-xr-x   6 root     other        512 Sep 22  2004 ORCLfmap
dr-xr-xr-x  37 bin      bin         1024 Mar 29  2010 OV
drwxr-xr-x   3 root     bin          512 Sep 20  2004 SUNWits
drwxr-xr-x   5 root     sys          512 Sep 20  2004 SUNWrtvc
drwxr-xr-x   3 root     other        512 Sep 24  2004 VRTSvcs
drwxr-xr-x   3 netcool  ncoadmin     512 May 26  2009 alu
drwxr-x---   3 root     other        512 Apr  4  2005 backups
drwxrwxrwx   2 root     other        512 Sep 22  2004 bin
drwxr-x---   3 root     other        512 Mar 29  2010 cfgdwn
drwxr-xr-x   5 root     sys          512 Jun 12  2008 dcelocal
-rw-r-----   1 root     other         25 Nov 15  2006 exclude
-rw-r-----   1 root     other       1243 Nov 14  2006 exclude.txt.new
-rw-r-----   1 root     other       2809 Nov 15  2006 exclude.txt.old
drwx------   2 root     root        8192 Sep 20  2004 lost+found
drwxr-x---   3 root     other        512 Feb 23  2005 mnams
-rw-r-----   1 root     other    39992320 Sep 17  2007 mnams.tar
drwxr-x---   3 root     other        512 Mar  2  2005 msg
drwxr-xr-x   4 root     other        512 Nov 10  2009 netcool
-rw-r-----   1 root     other    79429147 May 28  2007 netcool.tar.gz
drwxr-xr-x  12 netcool  ncoadmin     512 May 26  2009 netcoolnsa
drwxr-x---   2 root     other        512 Sep  7  2005 oracle
dr-xr-xr-x  12 bin      bin          512 Jun 12  2008 perf
drwxr-xr-x   3 root     bin          512 May 27  2005 sfw
drwxr-x---   2 root     other      28672 Apr  4  2010 tmp
root@qmgt2 # ls *
ls: illegal option -- X
usage: ls -1RaAdCxmnlhogrtucpFbqisfL@ [files]
root@qmgt2 # du -sk * | sort -n
du: illegal option -- X
usage: du [-a] [-d] [-h|-k] [-r] [-o|-s] [-L] [file ...]
root@qmgt2 # tail -X
usage: tail [+/-[n][lbc][f]] [file]
       tail [+/-[n][l][r|f]] [file]
root@qmgt2 # tail "-X"
usage: tail [+/-[n][lbc][f]] [file]
       tail [+/-[n][l][r|f]] [file]
root@qmgt2 # mv -X new.dat
mv: illegal option -- X
mv: Insufficient arguments (1)
Usage: mv [-f] [-i] f1 f2
       mv [-f] [-i] f1 ... fn d1
       mv [-f] [-i] d1 d2
root@qmgt2 # mv "-X" new.dat
mv: illegal option -- X
mv: Insufficient arguments (1)
Usage: mv [-f] [-i] f1 f2
       mv [-f] [-i] f1 ... fn d1
       mv [-f] [-i] d1 d2
root@qmgt2 # mv '-X' new.dat
mv: illegal option -- X
mv: Insufficient arguments (1)
Usage: mv [-f] [-i] f1 f2
       mv [-f] [-i] f1 ... fn d1
       mv [-f] [-i] d1 d2
root@qmgt2 # mv *X new.dat
mv: illegal option -- X
mv: Insufficient arguments (1)
Usage: mv [-f] [-i] f1 f2
       mv [-f] [-i] f1 ... fn d1
       mv [-f] [-i] d1 d2

I've never encountered this before. Something tells me that there is something special about this -X "file"... besides it being a royal PITA. Smilie
# 2  
Old 03-14-2011
Double post.

Continue discussion here.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. Linux

Read only access for Group called "Developers" to all folders on the Centos 6.6

Linux Gurus, I need to provide Read only access for particular group of users, they should have Read only access to entire server except their Home directory. I tried using setfacl that's not helping. Can you please suggest is there any other alternate way to address this request. Your help is... (5 Replies)
Discussion started by: shekar777
5 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. UNIX for Dummies Questions & Answers

Problems with "exit" called from function in bourne script

Hi everyone. #!/sbin/sh EXITING() { umount /FOLDER rm -Rf /FOLDER echo "EXIT" exit 0 } EXITING echo "OK" (8 Replies)
Discussion started by: vacadepollo
8 Replies

5. Shell Programming and Scripting

Remove file called "-X"??

Hi all, So I have found a file literally called "-X" in a folder, that is preventing me from using any meaningful commands in that folder because, as I understand it, at command runtime it will convert any wildcard characters into matching filenames, thus a command such as: ls *Ends up actually... (7 Replies)
Discussion started by: dan-e
7 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. UNIX for Dummies Questions & Answers

Expect "interact" fails when called from another script

So, I have an expect script (let's call it expect.exp) that takes 3 arguments. It logs into a remote server, runs a set of commands, then hands control over to the user by the "interact" command. If I call this script from the command line, it works properly. Now I'd like to apply this script... (2 Replies)
Discussion started by: treesloth
2 Replies

8. UNIX for Advanced & Expert Users

All alias in .profile lost when "script" command is called

Hi, I was trying to call "script <an ip add>" command from .profile file to log everything whenever anyone logs in to this user. I did the following at the end of .profile. 1) Extracted the IP address who logged in 2) Called script < ip add> . The problem I am facing is all, aliases etc. written... (3 Replies)
Discussion started by: amicon007
3 Replies

9. Windows & DOS: Issues & Discussions

Samba (SMB) client fails: "Called name not present"

Hi, I issue smbclient on a Linux REd hat server : smbclient -L ***.16.0.42 -U domaine/Administrator Password: Domain= OS= Server= Domain= OS= Server= Sharename Type Comment --------- ---- ------- IPC$ IPC IPC distant ... (0 Replies)
Discussion started by: big123456
0 Replies

10. UNIX for Dummies Questions & Answers

It's about MySQL setting called "big tables"

Friends, I'm a Unix/Linux Newbie and I do need some HOWTO help with my dedicated server: Linux Redhat 7, EnsimPRo 3.5 control panel == It's about MySQL setting called "big tables" == I have a problem with MySQL when importing large category tree textfiles into the database: I have MySQL... (1 Reply)
Discussion started by: Kayalame
1 Replies
Login or Register to Ask a Question