How to solve error of missing destination file operand after '/sdcard/ngrok/ngrok ' in termux [closed]












-1














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.









share|improve this question















closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59


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

If this question can be reworded to fit the rules in the help center, please edit the question.


















    -1














    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.









    share|improve this question















    closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59


    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

    If this question can be reworded to fit the rules in the help center, please edit the question.
















      -1












      -1








      -1







      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.









      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 '18 at 6:16









      P_Yadav

      1,5253923




      1,5253923










      asked Nov 13 '18 at 4:22









      Ronny

      1




      1




      closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59


      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

      If this question can be reworded to fit the rules in the help center, please edit the question.




      closed as off-topic by Romeo Ninov, G-Man, JigglyNaga, Isaac, Kusalananda Nov 13 '18 at 22:59


      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

      If this question can be reworded to fit the rules in the help center, please edit the question.






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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.






          share|improve this answer























          • Thanks but it's not working friend
            – Ronny
            Nov 13 '18 at 10:15






          • 1




            @Ronny What is the error?
            – P_Yadav
            Nov 13 '18 at 10:16










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – P_Yadav
            Nov 13 '18 at 16:29


















          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          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.






          share|improve this answer























          • Thanks but it's not working friend
            – Ronny
            Nov 13 '18 at 10:15






          • 1




            @Ronny What is the error?
            – P_Yadav
            Nov 13 '18 at 10:16










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – P_Yadav
            Nov 13 '18 at 16:29
















          1














          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.






          share|improve this answer























          • Thanks but it's not working friend
            – Ronny
            Nov 13 '18 at 10:15






          • 1




            @Ronny What is the error?
            – P_Yadav
            Nov 13 '18 at 10:16










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – P_Yadav
            Nov 13 '18 at 16:29














          1












          1








          1






          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.






          share|improve this answer














          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 13 '18 at 16:29

























          answered Nov 13 '18 at 4:29









          P_Yadav

          1,5253923




          1,5253923












          • Thanks but it's not working friend
            – Ronny
            Nov 13 '18 at 10:15






          • 1




            @Ronny What is the error?
            – P_Yadav
            Nov 13 '18 at 10:16










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – P_Yadav
            Nov 13 '18 at 16:29


















          • Thanks but it's not working friend
            – Ronny
            Nov 13 '18 at 10:15






          • 1




            @Ronny What is the error?
            – P_Yadav
            Nov 13 '18 at 10:16










          • @Ronny may be it is not file, if it directory then use -r option. See update.
            – P_Yadav
            Nov 13 '18 at 16:29
















          Thanks but it's not working friend
          – Ronny
          Nov 13 '18 at 10:15




          Thanks but it's not working friend
          – Ronny
          Nov 13 '18 at 10:15




          1




          1




          @Ronny What is the error?
          – P_Yadav
          Nov 13 '18 at 10:16




          @Ronny What is the error?
          – P_Yadav
          Nov 13 '18 at 10:16












          @Ronny may be it is not file, if it directory then use -r option. See update.
          – P_Yadav
          Nov 13 '18 at 16:29




          @Ronny may be it is not file, if it directory then use -r option. See update.
          – P_Yadav
          Nov 13 '18 at 16:29



          Popular posts from this blog

          How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

          is 'sed' thread safe

          How to make a Squid Proxy server?