How to solve error of missing destination file operand after '/sdcard/ngrok/ngrok ' in termux [on hold]
Clash Royale CLAN TAG#URR8PPP
up vote
-1
down vote
favorite
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
New contributor
put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
add a comment |
up vote
-1
down vote
favorite
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
New contributor
put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
New contributor
I am using termux in my android but I get the following error when I want to copy some data from sdcard
to $HOME
IN TERMUX the following
error shows up:missing destination file operand after '/sdcard/ngrok/ngrok'
here are commands:
$ cp /sdcard/ngrok/ngrok
cp: missing destination file operand after '/sdcard/ngrok/ngrok'
try 'cp --help' for more information.
cp android
cp android
New contributor
New contributor
edited 19 hours ago
Debian_yadav
1,0933922
1,0933922
New contributor
asked 21 hours ago
Ronny
1
1
New contributor
New contributor
put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
put on hold as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda 2 hours ago
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Romeo Ninov, Isaac
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
15 hours ago
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use-r
option. See update.
– Debian_yadav
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
15 hours ago
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use-r
option. See update.
– Debian_yadav
9 hours ago
add a comment |
up vote
1
down vote
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
Thanks but it's not working friend
– Ronny
15 hours ago
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use-r
option. See update.
– Debian_yadav
9 hours ago
add a comment |
up vote
1
down vote
up vote
1
down vote
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
You said that you want to copy file from sdcard to $HOME
, but your cp
command doesn't have destination. Format of copy command is cp source destination
. So right command is
cp sdcard/ngrok/ngrok $HOME
Make sure that sdcard/ngrok/ngrok
is a file. If it is a directory then use -r
option i.e.
cp -r sdcard/ngrok/ngrok $HOME
Also try cp --help
for more information about cp
command.
edited 9 hours ago
answered 21 hours ago
Debian_yadav
1,0933922
1,0933922
Thanks but it's not working friend
– Ronny
15 hours ago
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use-r
option. See update.
– Debian_yadav
9 hours ago
add a comment |
Thanks but it's not working friend
– Ronny
15 hours ago
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use-r
option. See update.
– Debian_yadav
9 hours ago
Thanks but it's not working friend
– Ronny
15 hours ago
Thanks but it's not working friend
– Ronny
15 hours ago
1
1
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny What is the error?
– Debian_yadav
15 hours ago
@Ronny may be it is not file, if it directory then use
-r
option. See update.– Debian_yadav
9 hours ago
@Ronny may be it is not file, if it directory then use
-r
option. See update.– Debian_yadav
9 hours ago
add a comment |