Copy text from one terminal into another

I am logged into ssh to a university account from my home computer. Then I find a file that I want to copy onto my local system. So I open a new shell terminal and am about to use scp to copy that file onto my system. But the path to the file on the system I am ssh‘ed into is long so I select it with the mouse and then paste it with the mouse into the other locally connected terminal.

Difference between “. myscript” and “./myscript”

I am confused by “one only dot – space – shell script name” (like . myshellscript) and “path to shell script” (like ./myshellscript) commands. What for they are? I noticed the command . myshellscript executes shell script even with -rw-rw-r–. But ./myshellscript doesn’t. So I am confused. Answers: Thank you for visiting the Q&A section … Read more

using tee to output intermediate results to stdout instead of files

I know that to capture a pipeline’s contents at an intermediate stage of processing, we use tee as ls /bin /usr/bin | sort | uniq | tee abc.txt | grep out , but what if i don’t want to redirect the contents after uniq to abc.txt but to screen(through stdout, ofcourse) so that as an end result , i’ll have on screen, the intermediate contents after uniq as well as the contents after grep.

Initialize WordPress environment to use in a real cron script

I have to run a PHP script through real cron (WP cron being too unreliable). Within that script, I need $wpdb to insert data into WordPress table. But of course $wpdb will not be available as WordPress would not be initialized. Right? So, my question is how to ‘include’ WordPress/initialize WordPress environment to do such tasks? How about
require_once(“wp-load.php”)?