Ubuntu :: Multiple Commands At The Terminal?
Jan 21, 2010
I am in the process of coverting some video files to motion jpeg (Wii) files with ffmpeg (great program by the way). I have been successful and so the majority of my work is over. My question is simple (I think) but complex to me so... here it goes. Is there a way on one command line to "batch" convert 8 or 9 files together instead of one by one. I just don't know what to put on the command line. I took one UNIX class a long time ago and the terms pipe and such come to mind... but I forget. Any takers? That was I can write what I want the computer to do in the morning and just come back after work and voila...
View 6 Replies
ADVERTISEMENT
Sep 1, 2011
With xterm, I can do the following, and the scripts are executed sequentially in a single xterm: xterm -e 'script1.sh;script2.sh' But with gnome-terminal, when I do: gnome-terminal -e script1.sh;script2.sh It runs them in parallel in 2 different terminals. I've tried a few combinations of ", and ', around the scrips, but no difference.
View 2 Replies
View Related
Feb 10, 2011
i started using computer when it was all dos driven so thought i was going to be fine using the terminal in ubuntu the problem i am facing is i can not quite get my head round why is it if i load the terminal. and the first this i type is dir or ls it gives me a list off directories. So why is it if i type cd /pictures i get no such file or directory ? Confused
This also bugging the jebus out off me is i am trying to get into my usb pen drive from the terminal to run a program i have on there.
so i type cd /media
then typed ls
is displayed New Volume <-- This being the name off my pen drive
i have tried every this to get into there but the commands i would use in dos are not playing ball.
Can some one please explain how to get into my usb pen then tell me were i can go read on this as i really can not get my head around this at moment.
View 5 Replies
View Related
Jan 24, 2010
if you do the command conky in terminal, it starts conky ofcourse, but it also shows output to that terminal so you can't do any other commands to that terminal, Is their an option like you can do with the '&' sign in other cases? If you do the '&' sign with conky it still gives output, also the conky -d command gives output...
View 9 Replies
View Related
Jan 27, 2011
I created a application launcher (type:terminal) to replace the index.php on my apache server (/var/www/) with the index I keep updated on my desktop.
This is the exact script I'm using on the launcher:
My idea was the launcher would delete the current file at /var/www/, and then copy the file on /home/andre/Desktop.
But its not behaving properly, it is deleting both the file in my /var/www/ AND my desktop.
View 2 Replies
View Related
Jul 26, 2010
I like background commands in scripts:
Code: sudo apt-get update& I also like multiple commands in scripts:
Code: sudo apt-get update && sudo apt-get upgrade
How would I combine these? Could I do it with functions?
View 9 Replies
View Related
Aug 28, 2010
Searched the forums for solution & am not seeing oneWrote a simple script to find Trash folders on Lucid and delete them
Code:
#!/bin/bash
sudo find / -regex ".*Trash[-]?[0-9]+?" | while read -e line
[code]....
View 1 Replies
View Related
Sep 21, 2010
I'm trying to write a bash script that will simultaneously ping a host and execute a traceroute at the same time. I would like the results to output to a text file.
View 6 Replies
View Related
Feb 7, 2011
so I am trying to make a launcher under application/Games menu for OpenBVE. In this launcher I need it to run 2 commands in the terminal:
Code:
cd /home/username/OpenBVE
and
Code:
mono OpenBve.exe
[Code]....
View 4 Replies
View Related
Jan 11, 2011
I'd like to convert some of my backed up ripped DVDs to an .avi with separate subtitle file. I have been looking at MEncoder but I can't get my head around the commands or how multiple .VOB files become a singular .avi file.
View 2 Replies
View Related
Feb 27, 2010
Is there any easy way to Make a GUI for terminal commands?
View 2 Replies
View Related
Mar 20, 2010
I was following a guide to stop Ubuntu from always asking the root password. And apparently i messed something up in vsudo edit or something like that i was in... So now when i put in a sudo command i get this...
Quote:
>>> /etc/sudoers: syntax error near line 18 <<<
sudo: parse error in /etc/sudoers near line 18
sudo: no valid sudoers sources found, quitting
so i cant even get back to undo what i edited.
View 8 Replies
View Related
Apr 11, 2010
I am trying to boot debian on my nexus one the guide i am using is telling me to run these commands
I am getting to the point where i type the command # cd /sdcard/debian but it tells me cd: can't cd to /sdcard/debian.
View 9 Replies
View Related
Apr 30, 2010
I've created a bash shell script, to open a few graphical programs. Trouble is, the next one doesn't start until I close the first one. How can I just skip to the next program?
View 2 Replies
View Related
May 7, 2010
Is there any way to run commands of other programs from the terminal?opened a doc file from the terminal using>openoffice.org filename.docis there any way to executeSELECT ALL[ctrl + a] orCOPY [ctrl + c]from the terminal?
View 2 Replies
View Related
Nov 17, 2010
I couldn't really find a general Ubuntu discussion area. So I typed ipconfig and of course it said no such command blah blah blah. What I found interesting was that it provided a list of other commands I may have meant to use, ie. ifconfig. So what's the algorithm used to determine the commands? Is it SOUNDEX or something else?
View 1 Replies
View Related
Nov 30, 2010
Unzipped the folder in home/folder wordpress-3.0.2.tar.gz and now have a file called 'wordpress' Can someone walk me through the terminal commands to install from here.
View 1 Replies
View Related
May 6, 2011
I upgraded to 11.04 today and wanted to reconfigure so that I could have the desktop cube again. Once I started trying to switch my settings for the cube configuration compiz asked whether I wanted to turn off various features and apparently among them was the control bar on the side and top of the screen. Now I log in to Ubuntu and I get my workspace and that's it. No control bars, just the workspace. I need to know a few things:
1) Has anyone else had this problem?
2) How do I get into the terminal from keyboard commands?
3) What terminal commands do I need to bring back at least the main toolbar so I can access programs.
View 1 Replies
View Related
Jul 16, 2011
Im new to ubuntu and I was wondering if someone could list some basic terminal commands and explain what they do, and when and why you would use them.
View 4 Replies
View Related
Aug 3, 2011
I have a question regarding terminal. I try to launch it from the "Startup Applications" by entering a script.Code: sh -c '/usr/bin/gnome-terminal'but it does not start.Also, when it does start I would like it to auto run certain commands: navigate to my project folder run "play test" open a new tab run "top".how can I achieve this?
View 9 Replies
View Related
Jan 22, 2011
I'm trying to run multiple commands on things I have found, how can I achieve this? find . -exec cmd1; cmd2 does not seem to work; it instead runs cmd2 after cmd1 has been executed on every file.
View 2 Replies
View Related
Jul 12, 2010
I am using putty to connect to some servers. Is there a program that let you connect to say three servers and when you write your commands to server1, server2 & 3 also gets the command? So I don't have to log in to all three servers to do the exact same thing.
View 2 Replies
View Related
Jan 6, 2010
I was wondering if there was a way to show all current actions I am doing in a terminal window? For example if I left a terminal window open on one of my desktops, could I make it display everything I am doing so that when I receive some general error in a program, I could jump over and get some more details. I could also use it to see what commands are actually run when I do certain things.
View 1 Replies
View Related
Jul 1, 2010
I added this:
Code:
clear
fortune | cowsay | echo
to the bottom of my .profile expecting a cow to tell me a fun quote whenever i pull up a terminal. It hasn't done anything, however. How do I achieve my desired effect?
View 4 Replies
View Related
Apr 7, 2011
This is the commands wallpaper for desktop. I hope you all will like it... [URL]
View 8 Replies
View Related
Apr 20, 2011
I mean, obviously I can just type them out and italicize them or something equally boring, but what I'd like to do is make the code look like it does on these forums.Code:sudo apt-get install html-knowledgeI've been Googling like a mad man (not a euphemism) for the better part of an hour and can't turn up any pertinent results. I thought maybe somebody here could point me in the right direction. I'm tired of my blog posts looking ugly and disorganized when I start typing commands.
View 2 Replies
View Related
Jun 23, 2011
We have created a stripped own version of Ubuntu 10.04 LTS, and removed the screen saver and power management options from the desktop as we have turned off the menu. The reason for this is security as we do not want users having any other options then what shows on the desktop. What is the sudo command to get back to this or do I need to under the administrator profile Create a Launcher icon?
View 1 Replies
View Related
Jun 25, 2011
I wonder if there is a directory for a terminal commands that may I can backup the commands I have used in the terminal before.
View 7 Replies
View Related
Jul 10, 2011
While trying to make a Winmodem work, I've installed drivers, done magic incantations in Terminal, etc., without keeping complete records of what I did. Is there a "clean" routine or something that will remove unused drivers, or do a system rollback, or some other way to clean up the mess?
View 2 Replies
View Related
Jul 30, 2011
I have a terminal window running a game server in Ubuntu 11.04. no problems at all.I also have a backup script, which simply uses cp to save copies of the level files. this is run as a scheduled task every 20 minutes.What i'm trying to do, is as part of the backup script issue a command in the game server terminal window (forcing a save of the level) before the cp command takes place.
Two days of googling and i have failed to find a solution, anyone have any ideas?one thing i was also trying to figure out is how to identify the game server terminal window, maybe by changing the 'Terminal' text at the top. is this possible?
View 1 Replies
View Related