Search Results

Search: Posts Made By: ajaypadvi
12,370
Posted By mirni
You can use netcat and compress it for speedier...
You can use netcat and compress it for speedier transfer:

On the receving machine:
nc -l 80 | tar xvzf -

On the sending machine:
tar cvz directory | nc IP_of_receiving_machine 80

Note,...
12,370
Posted By cero
The utility curl with option -T can be used for...
The utility curl with option -T can be used for that.

curl -T "yourfile" http://www.sitetoupload.com
.
24,259
Posted By Ygor
Try... command | paste -s -d,
Try... command | paste -s -d,
24,259
Posted By divya bandipotu
$ cat output fstl:r-x ajay:r-x $ cat...
$ cat output
fstl:r-x
ajay:r-x


$ cat output | tr "\n" "," | sed 's/,$/ /' | tr " " "\n"
fstl:r-x,ajay:r-x
2,557
Posted By danmero
find LOG_DIR -type f | while read filename; do...
find LOG_DIR -type f | while read filename; do echo "$filename"; done
Showing results 1 to 5 of 5

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