The EVO with Ice cream sandwich makes copy and paste very frustrating. I'm trying to copy email notes into a notepad app.
When I copy and paste the text the first time it works fine. When I try to paste it into notepad on the next line the cursor goes back to the last word of the previous line. I want to paste my text on the next line. Why is this doing this? ugh.
Hi,
I was trying to concatenate some files using paste command along with some formatting but getting stuck.
The problem is:
Code:
cat 1.txt
A
Code:
cat 2.txt
B
C
Code:
cat3.txt
D
E
Code:
cat 4.txt
G
H
I
Code:
paste -d "%" 2.txt 3.txt > 5.txt
B%D
C%E
Code:
paste -d "%" 1.txt 5.txt 4.txt
A%B%D%G
%C%E%H
%%I
but
Expected Output
Co
Hi,
I've just frustratingly spend a couple of hours looking for some way to paste multiple items recently copied in one go. I.e copy a line copy another line copy a link then 'PASTE ALL' I've tries pastie glipper clipit diodon xlip xsel and nothing will do it. This seems like a really simple thing does anyone know of either an application that will do it or a python script or something?
Frequently we need to copy-paste a code snippet and compile-run it. The problem is that the lines of code are tagged by line number. So what utility to use to elegantly discard the line numbers?
I am using windows and is connecting to an ubuntu server I want to add this line to a text file
/dev/xvdf /mnt1 auto defaults,nobootwait 0 0
obviously I prefer to copy and paste that rather than typing it
So I do nano /etc/fstab in amazon ec2
Then what?
I can't paste anything. How do I paste lines like that to nano or any other linux text editor?
Hi!
I am trying to copy-paste a tarball (or any folder) from desktop to the folder /usr/local
and after I make copy (right click --> copy) and try to paste it in some of the system folders (like the one mentioned) the paste option is inactive.
Please help!!!
Dear all,
I have the files: xaa xab xac
and I try to paste them using $paste -d, xaa xab xac
I see:
output
Code:
3e-130
,6e-78
,5e-74
6e-124
,0,007
,0,026
2e-119
When I type: $ paste -d, xaa xab xac |less
I see:
output
Code:
3e-130^M,6e-78^M,5e-74
6e-124^M,0,007^M,0,026
2e-119^M,0,040^M,0,041
1e-82^M,0,19^M,0,069
3e-71^M,1e-77^M,0,13
3e-66^M,1e-77^M,0,43
2e-62^M,0,44^M,6e-84
Anyway,
I'm relatively new to linux.
My question is, why when I do ctrl+C (copy) in Eclipse, and then shift+insert (paste) in command line, there's nothing pasted?
Thanks.
hi all.
i wondering if there any way to copy paste multiple command into single line.
for eg:
command 1: go to dir.. cd /usr/lib...
command 2:make a new folder in the dir.. mkdir 20121016
command 3:copy into new folder.. cp * 20121016
im using putty to remote my machine, so everytime to backup my folder, i doing this. copy paste one by one command.