0
votes
1answer
28 views

Shell command for getting history of a specific command

I am looking for a command that shows what type of parameters are used earlier for the command I am using currently. For example, if I want to use the command say tail, can I see the list of commands ...
0
votes
2answers
24 views

How to sort content of a text file in Terminal Linux by splitting at a specific char?

I have an assignment in school to sort a files content in a specific order. I had to do it with Windows batch-files first and now I have to do the same in Linux. The file looks more or less like this ...
0
votes
2answers
57 views

Bash Run command for certain time?

I am making bash script for my use. How can i run a command for certain time, like 20 second and terminate command? I tried a lot of solutions from internet but nothing works, I also tried timeout ...
0
votes
2answers
48 views

rename folders with case-sensitive names

I want to rename folder with case-sensitive option. for example: mv "foldername1" "foldername2" an error occuring in this command, because name of my folder isn't "foldername1", it is ...
2
votes
2answers
86 views

can't download github project with curl command

I used "curl -sO" command to download project files from this GitHub project link: http://github.com/ziyaddin/xampp/archive/master.zip but, I couldn't download. There is error occured and says that: ...
3
votes
3answers
32 views

BASH - commands string-like

I am wondering if it is possible in BASH to use commands in this way: lets take command pwd Lets say I would like to have a variable comm="pwd" and then use it somewhere in program, but when I use ...
-2
votes
1answer
68 views

a bash script to change postgresql user password [closed]

I can change the postgresql user password in this way (2 steps): $ su - postgres -c 'psql -U postgres -d postgres' # Alter user postgres with password 'password'; Now I want to use a single line ...
1
vote
1answer
70 views

how to send an external command to external program in bash?

I have an app installed on solaris which have its own specific commands,normally I have run below commands one by one in terminal: eaw DDBSC1 (then the prompt will change to <) < ...
0
votes
1answer
90 views

How do I move all arguments entered in a shell script to a folder?

I am trying to move all the arguments that are given when the script is run, to a RecycleBin directory. I am setting RecycleBin to be a directory in my home folder using RecycleBin="$HOME/Recycled". ...
0
votes
3answers
64 views

Adding a column with awk

I want to add a new column at the beggining of every row. Command used: tree -afispugD --inodes I want to put a new column which will be the name of the file. Example: 119801433 -rwxr--r-- ...
0
votes
1answer
35 views

BASH let command..gives wrong result on padded numbers

The following code prints 4 as expected: let x=21 let x=$x-1 echo $x But the following prints 16: let x=000021 let x=$x-1 echo $x Could someone explain the difference?
0
votes
2answers
194 views

Running MySQLdump on each line of file; command not found

Performing automated database backups for starters and testing commands. I've found for performing an action on each line of a text file via BASH CLI is something to the effect of: # while read line ...
0
votes
1answer
45 views

Fill in multiple arrays from command's output - Bash

I'm looking for the best way to fill in multiple arrays from command's output using Bash. The solution I figured out at this stage is: i=1 ls -al | while read line do # Separate columns ...
1
vote
1answer
126 views

How to run SVN export without the prompt of username and password

Is it possible for me to do an SVN export without being prompt for the user and pass? I give my username and pass, in the command: svn export --username bavhbavh --password blahblah ...
0
votes
2answers
377 views

-bash: __git_ps1: command not found

I tried to install Ruby 2.0. My command line urped and now looks like the following: -bash: __git_ps1: command not found [11:58:28][whatever@whatever ~]$ I have not a clue how to get rid of the ...
1
vote
3answers
91 views

bash: loop through procces output and terminate the process

I need some help with the following: I use linux to script commands sent to a device. I need to submit a grep logcat command to the device and then iterate its output as it is being generated and ...
1
vote
2answers
54 views

running basic commands all at once and then sequentially after they all finish

How would I run several commands as below so that the last line executes (cleans up) after all the background ones are done? echo "oyoy 1" > file1 & echo "yoyoyo 2" > file2 & rm -f ...
0
votes
2answers
102 views

bash: partial match up to a complete word for case

I wrote a bash script that takes a command as the first positional parameter and uses a case construct as a dispatch similar to the following: do_command() { # responds to invocation `$0 command ...
0
votes
3answers
282 views

How to use ls to find files for a specific set of dates in Unix [closed]

I have a set of files in a directory. I need to find files for a set of specific dates (For example if i need files from 16th Jan to 20th Jan). I tried using ls -ltr | grep <date> but it is ...
0
votes
2answers
56 views

Linux to ask Password for Customized/Aliased Command? [closed]

I am using alot of alias commands in Linux but how to protect each commands with p/w? Lets say i made: $ vi .bash_profile alias goto1='echo ip=192.168.1.1, pw=abc; ssh root@192.168.1.1;' alias ...
1
vote
5answers
150 views

Executing bash command and getting the output in C

Hello I have seen some solutions on the internet, all of them are basically creating a file, however I want to store them in an array of char. Speed is really important for me and I don't want to ...
-1
votes
1answer
72 views

Book - bash scripting and unix commands [closed]

I am beginning to learn Bash shell scripting in Unix environment and was looking for a good book/reference guide which would include the following: Bash scripting - basics (conditionals, loops ...
2
votes
2answers
415 views

bash and telnet to test an email

I'm trying to find out whether an email address is valid. I've accomplished this by usign telnet, see below $ telnet mail.example.com 25 Trying 0.0.0.0... Connected to mail.example.com. Escape ...
1
vote
2answers
102 views

find command: list every directory and subdir, except .git or .hg dir and subdirs

I tried to use this command in my work dir find . -type d \( ! -name .git -prune \) -o \( ! -name .hg -prune \) Does not seem to work? removing prune will only exclude .git or .hg directories, ...
0
votes
2answers
123 views

Executing a bash command in an iOS app

Is it possible to execute a bash command within an iOS app? For example, I want to execute the "ping" command in my app, and I need to get the command's output as well. Hope I described my question ...
-1
votes
2answers
179 views

C++ running command in linux terminal I dont get it

I'm teaching myself C++ let's get that on the table. I learn best by choosing what I want to program and just doing it, the step by step hello world and so on tuts are to slow for me so that aside ...
0
votes
2answers
87 views

why sed command can work directly and can't work when I write it in script file?

This is my context: I have a profile named profile # file: profile MY_PATH = "/home/deng/default" MY_NAME = "deng" my test file: #!/bin/sh #file: test.sh DJ_PATH="/deng/jian/doc" ...
1
vote
2answers
49 views

Winter bashing with find

Recently (that is in winter in few days) I wrote a simple script which packs some folders, script is listed below: #!/bin/bash for DIR in `find -name "MY_NAME*" -type d` do tar -zcvf $DIR.tar.gz ...
0
votes
3answers
154 views

How to run commands, get output and input commands with bash

How would I run a command (this is a command line Java app), read its output, and enter input into it, with a shell script. Is that possible? I heard about something called GNU Screen, but when I ...
0
votes
4answers
99 views

return and add a new line without executing the current command in bash?

After I had typed a long command in the bash, i determined not to execute it for some reason. But i just wanted to start a new line without clear the command. That command was still on the screen? ...
0
votes
6answers
82 views

Command “jobs” doesnt work on terminal (shell,bash)

I'm just trying to make a simple script which involves the command "jobs", but it doesnt seem to work, it doesn't even get recogniced by "man"... No idea what's going on :S.
1
vote
2answers
123 views

One GIT command to rule them all (gacp: git-add-commit-push)

I would really love a specialized git alias / bash function that can do the following. git add -A git commit -m "$MESSAGE" git push origin master All with a single command. gacp > My message ...
0
votes
1answer
93 views

Difference variables in quotes (inside the command)

I am running my script in different environments and therefore I store the path and name of program I want to start in variable $CreateSequenceDictionary. This program uses parameters R= and O= for ...
0
votes
3answers
90 views

Get file path with find without giving filename

How can I get the path of a .pid file that is inside a directory. the code below returns only the file root@linux [/]# ls -l $(find /* -name dovecot | grep var/run) | grep pid -rw------- 1 root root ...
5
votes
2answers
464 views

Bash: run one command after another, even if I do suspend the first one (Ctrl-z)

I know in bash I can run one command after another by separating them by semicolons, like $ command1; command2 Or if I only want command2 to run only if command1 succeeds, using &&: $ ...
0
votes
2answers
63 views

How can I add a block of text to all the PHP files in all subdirectories?

I have a PHP script that I need to add my copyright into at the top. I simply want it to appear after Here's what needs to be added: /** * MySoftware * * This file is part of MySoftware. * * ...
2
votes
3answers
1k views

List files over a specific size in current directory and all subdirectories

How can I display all files greater than 10k bytes in my current directory and it's subdirectories. Tried ls -size +10k but that didn't work.
0
votes
1answer
115 views

cygwin: timeout syntax always fails

With Cygwin, I tried to use "timeout" to make my script sleep for a few seconds. But even when I did it according to its syntax it always asks me to try --help, meaning I gave the wrong forms. Here ...
3
votes
5answers
231 views

Pipe | Redirection < > Precedence

I want to make clear when does pipe | or redirection < > takes precedence in a command? This is my thought but need confirmation this is how it works. Example 1: sort < names | head The pipe ...
2
votes
1answer
120 views

search with find command until first match

I just need to search for a specific directory that can be anywhere is there a way to run this command until the first match? Thanx! Im now ussing find / -noleaf -name 'experiment' -type d | wc -l
2
votes
1answer
174 views

Convert my bash command into a bashrc function and pass argument

I've got a sweet bash command to find key phrases in files and filepaths, thanks to @ezod here. I'm trying to turn it into a function in my bashrc, but it doesn't generate the same result. I'm ...
0
votes
3answers
232 views

Bash command to search for any occurrence of phrase and return list of files and paths

I'm looking for a simple bash command to search for a phrase in filenames, directory names, and within text of all files. It should return a list of files and directories. Ideally, I'd like the option ...
1
vote
3answers
254 views

test command in unix doesn't print output

Why is there no output to the command test 3 -lt 6 in the unix terminal? Shouldn't test output a 0 or a 1? I did a man test and it says Exit with the status determined by EXPRESSION
0
votes
2answers
197 views

Need recursive BASH script to traverse folders and use wildcards

We have been capturing and sending files to a REST server and saving them to PNG extensions from a toolbar, now have nearly a half a million files. Recently we found they have been actually saving as ...
0
votes
3answers
106 views

Linux script: Reinterpret environment variable

I am creating a Bash script which reads some other environment variables: echo "Exporting configuration variables..." while IFS="=" read -r k v; do key=$k value=$v if [[ ${#key} > 0 ...
0
votes
2answers
88 views

How to search for a specific text and echo next characters of that specific text?

I have a project requirement where next characters of a text need to be printed after searching a specific text. To understand better, here is an example. I have an index.html file and would like to ...
3
votes
2answers
126 views

How to make this command safe, and work for quoted strings

I found (and adapted a bit) a command to edit a list of files using regex (and perl). I put it into a script file called cred, so I can do cred . england England to replace all occurrences of england ...
2
votes
4answers
243 views

man grep | grep “color” gives no result

How come when I try to search the grep manual for the color option with this command man grep | grep "color" I get no result but when I run man grep man outputs this [EDITED] --colour=[when, ...
0
votes
2answers
145 views

reading a variable that is a command in the terminal

Im doing this that works fine utnso@utnso-vm:~$ read command ps -fea utnso@utnso-vm:~$ $command UID PID PPID C STIME TTY TIME CMD root 1 0 0 23:34 ? 00:00:02 ...
-2
votes
3answers
101 views

How to find bash commands?

I guess it's pretty simple. I just want to locate a bash command. For example when I want to know which commands are existing, containing the phrase "user". So the command I am looking for should ...

1 2 3