Can't remove file from terminal folder

Clash Royale CLAN TAG#URR8PPP
I would like to remove the .xlsx file below in terminal folder. When I right click and do delete, it gives error: no such file. When I do 'ls' in command line it is not listed either. I refresh the terminal folder, it is still in there. why?

linux filenames
add a comment |
I would like to remove the .xlsx file below in terminal folder. When I right click and do delete, it gives error: no such file. When I do 'ls' in command line it is not listed either. I refresh the terminal folder, it is still in there. why?

linux filenames
add a comment |
I would like to remove the .xlsx file below in terminal folder. When I right click and do delete, it gives error: no such file. When I do 'ls' in command line it is not listed either. I refresh the terminal folder, it is still in there. why?

linux filenames
I would like to remove the .xlsx file below in terminal folder. When I right click and do delete, it gives error: no such file. When I do 'ls' in command line it is not listed either. I refresh the terminal folder, it is still in there. why?

linux filenames
linux filenames
edited Feb 13 at 23:05
Kusalananda
134k17255418
134k17255418
asked Feb 13 at 22:04
kutluskutlus
707
707
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The question marks might be representative of characters that your file manager is unable to display. If that is the only .xlsx file in the directory, try running the command rm *.xlsx in the terminal, from within the directory with the file in it.
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of?s. It would be much better to use the Unicode standard replacement character: �
– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal?to delete the file, as if it was using the output ofls.
– Kusalananda
Feb 13 at 23:06
Considerrm -i...if you're not sure what will match.
– Jeff Schaller
Feb 14 at 2:05
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500501%2fcant-remove-file-from-terminal-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The question marks might be representative of characters that your file manager is unable to display. If that is the only .xlsx file in the directory, try running the command rm *.xlsx in the terminal, from within the directory with the file in it.
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of?s. It would be much better to use the Unicode standard replacement character: �
– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal?to delete the file, as if it was using the output ofls.
– Kusalananda
Feb 13 at 23:06
Considerrm -i...if you're not sure what will match.
– Jeff Schaller
Feb 14 at 2:05
add a comment |
The question marks might be representative of characters that your file manager is unable to display. If that is the only .xlsx file in the directory, try running the command rm *.xlsx in the terminal, from within the directory with the file in it.
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of?s. It would be much better to use the Unicode standard replacement character: �
– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal?to delete the file, as if it was using the output ofls.
– Kusalananda
Feb 13 at 23:06
Considerrm -i...if you're not sure what will match.
– Jeff Schaller
Feb 14 at 2:05
add a comment |
The question marks might be representative of characters that your file manager is unable to display. If that is the only .xlsx file in the directory, try running the command rm *.xlsx in the terminal, from within the directory with the file in it.
The question marks might be representative of characters that your file manager is unable to display. If that is the only .xlsx file in the directory, try running the command rm *.xlsx in the terminal, from within the directory with the file in it.
answered Feb 13 at 22:31
J. TaylorJ. Taylor
1,78211523
1,78211523
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of?s. It would be much better to use the Unicode standard replacement character: �
– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal?to delete the file, as if it was using the output ofls.
– Kusalananda
Feb 13 at 23:06
Considerrm -i...if you're not sure what will match.
– Jeff Schaller
Feb 14 at 2:05
add a comment |
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of?s. It would be much better to use the Unicode standard replacement character: �
– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal?to delete the file, as if it was using the output ofls.
– Kusalananda
Feb 13 at 23:06
Considerrm -i...if you're not sure what will match.
– Jeff Schaller
Feb 14 at 2:05
1
1
thank you, it worked!
– kutlus
Feb 13 at 22:37
thank you, it worked!
– kutlus
Feb 13 at 22:37
1
1
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
This indicates a quite serious bug in whatever filemanager the user is using. One that could potentially cause loss of data when deleting oddly named files.
– Kusalananda
Feb 13 at 22:52
Yes, it's indistinguishable from a valid filename which contains that sequence of
?s. It would be much better to use the Unicode standard replacement character: �– J. Taylor
Feb 13 at 22:55
Yes, it's indistinguishable from a valid filename which contains that sequence of
?s. It would be much better to use the Unicode standard replacement character: �– J. Taylor
Feb 13 at 22:55
It looks as if the filenamanager is actually using literal
? to delete the file, as if it was using the output of ls.– Kusalananda
Feb 13 at 23:06
It looks as if the filenamanager is actually using literal
? to delete the file, as if it was using the output of ls.– Kusalananda
Feb 13 at 23:06
Consider
rm -i... if you're not sure what will match.– Jeff Schaller
Feb 14 at 2:05
Consider
rm -i... if you're not sure what will match.– Jeff Schaller
Feb 14 at 2:05
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500501%2fcant-remove-file-from-terminal-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown