Battlefield 3 – Operation Kill Everything
AH-1Z Viper Attack Helicopter Montage, Operation Kill Everything
AH-1Z Viper Attack Helicopter Montage, Operation Kill Everything
I just need Memcached to start automatically when reboot so that I don’t have to wait to log into the server to do that every time I restart my server. The problem here is that I didn’t install Memcached using YUM. I compiled Memcached it myself. So, t…
$ getent services <<service>>
Uses the file located in /etc/services
View this command to comment, vote or add to favourites
View all commands by unixmonkey4200
by David Winterbottom (codeinthehole.com)
$ sed -e ‘/\\$/{:0;N;s/\\\n//;t0}’
Joins each line that end with backslash (common way to mark line continuation in many languages) with the following one while removing the backslash.
View this command to comment, vote or add to favourites
Vi…
upon trying to get ClipBucket to upload and convert a video properly it kept failing. Ultimately the FFmpeg presets files (*.ffpreset) were missing. This being really the first time I’d ever used ffmpeg, I was searching with a blind fold on. After a while I finally found out that I was missing the majority of the .ffpreset files on my server.
$ paste(){ curl -s -S –data-urlencode "txt=$($*)" "http://pastehtml.com/upload/create?input_type=txt&result=address";echo;}
paste(){ curl -s -S –data-urlencode “txt=$($@)” ”
View this command to comment, vote or add to fa…
$ Tunnel a MySQL server listening on a UNIX socket to the local machine
Listens on local port 5500 and connects to remotehost with username user to tunnel the given socket file. Will work with anything, but can be useful if there’s a need for a local a…
$ upper() { echo ${@^^}; }
Usage: upper [STRING]…
View this command to comment, vote or add to favourites
View all commands by sharfah
by David Winterbottom (codeinthehole.com)
$ lower() { echo ${@,,}; }
Usage: lower [STRING]…
View this command to comment, vote or add to favourites
View all commands by sharfah
by David Winterbottom (codeinthehole.com)
$ listhw(){ curl -s -S –data-urlencode "txt=$(sudo lshw -html)" "http://pastehtml.com/upload/create?input_type=html&result=address";echo;}
In this Linux box i need to become root to get the complete hardware list, so either bec…