Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 57375

A script is a sequence of commands or instructions that are executed by an interpreter program rather than compiled into a standalone executable program.

3 votes

Execute a command on user logon

According to this topic: Run command automatically after login? You have the solution of the .bashrc (not what you need) and the solution of startup applications. I quote Daniel S.: gnome-session …
Laurent C.'s user avatar
27 votes

Shell script wait for background command

You can use the command wait PID to wait for a process to end. You can also retrieve the PID of the last command with $! In your case, something like this would work: command1 & #run command1 in ba …
Laurent C.'s user avatar
1 vote

Delete files with same name at the end of the file

Try this at the root of your directory where you want to delete the files: find . -name "*.php.php*" -exec rm '{}' \;
Laurent C.'s user avatar