Welcome To Snipplr
Everyone's Recent Bash Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This snippet will produce an alpha-numeric 16 character password
1
1800
posted 13 years ago by mralexjuarez
From a local computer to a server with a public/private key pair.
0
1901
posted 13 years ago by adamokruhlicaeu
This is a simple wrapper to bc to perform basic calculator duties. with up to 4 decimal place precision. its just one of those things you might find useful. Then again all the os's out there have a gui calc easily ready too.
0
1862
posted 13 years ago by brownrl
This script opens an SSL tunnel between a source host and a target host.
1
2082
posted 13 years ago by miceno
This script enables the conversion of the HTML files available in the ePub format in only one PDF file
0
4216
posted 13 years ago by chema_ar
Say I'm in a Git repository. I delete a file and commit that change. I continue working and make some more commits. Then, I find I need to restore that file.
0
2018
posted 13 years ago by satie83
If you have a script that must be run as the root user, put this at the top:
1
2325
posted 13 years ago by deanhouseholder
In order to use a proxy by default for your network-based commands, create the file "~/.ssh/config" and give it these properties. Replace "proxyhost" with the hostname/IP of the proxy server and "80" with the port of the proxy server.
0
2206
posted 13 years ago by deanhouseholder
This is a bash file to Create or Delete Virtual Host in Ubuntu system and Apache server.
This file open the Virtual Host in "/home/{user}/www/{domain}"
To run this file you need to make this file executable:
> sudo chmod u+x /path/to/file
Th...
0
2033
posted 13 years ago by roeyhaim
Shell script written in bash which displays a menu giving the you ability to add, edit, modify, and delete users.
1
4928
posted 13 years ago by dego89
Replaces string 'sth' with 'sth-new' in all files in current directory.
0
1972
posted 13 years ago by ef
Using sed to recursively remove malicious code injection form .php files when the injected code follows the pattern <?php>
0
3202
posted 13 years ago by tinytiger
This would convert images at 30fps to a mp4 video, with sequence titles:
ImageName0000.png, ImageName0001.png, etc.
You could use -r 1/5 to use one frame every five seconds.
1
3042
posted 13 years ago by jmiller
My first (simpliest) way to collect monitoring data from few servers. Only skeleton for adding custom parameters. Using this way is not a good idea in general.
1
1680
posted 13 years ago by 2mf
Find and List all the files with extension .file containing/not containing the given string "STRING"
The snippet is set to "containing", to switch it to "not containg" just replace "grep -l" with "grep -L"
containing : grep -l
not containing:...
0
2139
posted 13 years ago by claudiodev
As portrayed by the example found in the [Advanced Bash Scripting guide](http://tldp.org/LDP/abs/html/here-docs.html) this demonstrates a few techniques
0
2960
posted 13 years ago by symsec
As portrayed by the example found in the [Advanced Bash Scripting guide](http://tldp.org/LDP/abs/html/here-docs.html) this demonstrates a few techniques
0
2860
posted 13 years ago by symsec
Installs drupal using the provided database credentials with the provided localization, creates admin account with the given name and password
0
1663
posted 13 years ago by klickreflex