Tagged Questions
0
votes
1answer
12 views
PuTTY and PowerTerm scripting Problem, Open a just in time URL via Samba share
I'm sshing into a fedora server using Powerterm (an expensive overly priced, license based, terminal emulator). The server uses an ancient form of (what I'm told is similar to) cobalt. I have no ...
6
votes
3answers
422 views
Difference between commands in bash script and commands in terminal
Are there any differences between commands that you type into the terminal and commands you include in a script?
5
votes
2answers
594 views
How to tweet using terminal?
I would like to tweet a message using terminal.
I tried something like:
curl -u 'TwitterUsername':'TwitterPassword' -d status=”Your Message Here” https://twitter.com/statuses/update.xml
but seems ...
6
votes
4answers
2k views
Parallel execution of a program on multiple files
I have a small script that loops through all files of a folder and executes a (usually long lasting) command. Basically it's
for file in ./folder/*;
do
./bin/myProgram $file > ./done/$file
...
1
vote
1answer
432 views
How to use scriptreplay?
I know I can replay terminal actions with:
scriptreplay /path/to/$STARTTIME-timing.txt /path/to/$STARTTIME-log.txt
But how can I replay the actions from, for example, the 2nd to the 3rd minute? ...
3
votes
1answer
1k views
How to automatically record all your terminal sessions with script utility
What I want to achieve is be able to record my terminal sessions to file automatically whenever I use Yakuake/Konsole.
It's easy to achieve if at the start of my session I do:
script -f ...
0
votes
2answers
531 views
Why curl -O -C on mac fails to download
The following script works on Ubuntu, but not on Mac. Why? How to edit it so that it would work there too?
#!/bin/sh
v=1.1
test_file="Test10.java"
jar_file="dp4j-$v-jar-with-dependencies.jar"
curl ...
