scp -P port user@server:/path_to_the_file/file /path_to_local_dir/
get file size:
ls -sh file
get file size:
ls -sh file
This blog contains data I found useful for my current research. My current research: http://philippovich.ru/Projects/ASIS/index.htm (it's in russian only, sorry) Here is almost the same in english: http://w3.usf.edu/FreeAssociation/
SELECT distinct
c.name cue_name,
b.name reaction_name,
(SELECT
Count(*)
FROM
rdb_freqs a1
where
a1.cue_id = a.cue_id and
a1.reaction_id = a.reaction_id
) as count
FROM
rdb_freqs a
inner JOIN rdb_reaction b ON a.reaction_id = b.id
inner JOIN rdb_cue c ON a.cue_id = c.id
order by count desc