Search Results

Search: Posts Made By: gwgreen1
5,798
Posted By Tommyk
as stated above - tells the command to expect...
as stated above - tells the command to expect options as it is a special character.
You need to remove the special meaning of this either by the backslash or by using quotes.


mv \-9file.jpg...
5,798
Posted By rangarasan
find
Hi,

Try this one,


find . -name "-9file.jpg" | xargs -I '{}' mv {} 9file.jpg


Cheers,
Ranga:)
5,798
Posted By vbe
Remember also that you can use backslash to avoid...
Remember also that you can use backslash to avoid shell interpretation: mv ./\-9file.jpg 9file.jpg
5,798
Posted By hergp
To keep it simple, just use mv -- -9file.jpg...
To keep it simple, just use

mv -- -9file.jpg 9file.jpg
The special option "--" can be used to delimit the end of the options. This is useful in delimiting non-option arguments that...
2,128
Posted By ybbon66
try them out and see what happens! the man pages...
try them out and see what happens! the man pages give examples of what they are but it depends on the OS too, on ubuntu (ie linux) man of rsh and ssh is the page for ssh and the same is true of rcp...
3,299
Posted By hergp
Just type bash-3.00$ enable enable . ...
Just type


bash-3.00$ enable
enable .
enable :
enable [
enable alias
enable bg
enable bind
enable break
enable builtin
enable caller
enable cd
enable command
enable compgen
...
Showing results 1 to 6 of 6

 
All times are GMT -4. The time now is 06:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy