Skip to main content

All Questions

Tagged with
42 votes
8 answers
32k views

How to pipe text from command line to the clipboard

I'd like to do something like dir *.* > clipboard ie. get to get the standard output of a command line program copied to the clipboard. Can this be done on a standard XP machine without ...
Ville Koskinen's user avatar
1 vote
1 answer
964 views

Terminal new window always shows -bash: Searching: command not found

When open terminal, it always shows -bash: Searching: command not found. It does not affect other functions, just each time, even though open a new terminal window, it still pops up at the top of the ...
CarolineGao's user avatar
91 votes
5 answers
198k views

How do I get the size of a Linux or Mac OS X directory from the command-line? [duplicate]

What command do I use to find the size of all the files (recursively) in a Linux or Mac OS X directory?
Daryl Spitzer's user avatar
8 votes
6 answers
13k views

Which torrent apps work headless (from command line only)?

There's a question on here about what torrent apps work well remotely, but I'm hoping to find out one that works well through a command line interface, preferably with no GUI. What torrent apps ...
jweede's user avatar
  • 6,893
2 votes
2 answers
6k views

OSX bash command line countdown timer

I found here on superuser the following nice countdown script that I could include in my .bash_profile: function countdown(){ date1=$((`date +%s` + $1)); while [ "$date1" -ne `date +%s` ];...
Tim's user avatar
  • 175
0 votes
1 answer
441 views

Different time specification formats with crontab

Say you want to run a job every 30 minutes on linux (or osx) using crontab. Sometimes I see the the sytax written like this: 30 * * * * /path/to/job and sometimes I see it written like */30 * * * * ...
evan's user avatar
  • 363