This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
convert input1.jpg input2.jpg input3.jpg output.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
convert -density 200 -compress jpeg -quality 20 input.pdf output.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import dbus | |
NM = 'org.freedesktop.NetworkManager' | |
NMCA = NM + '.Connection.Active' | |
NMDW = NM + '.Device.Wireless' | |
NMAP = NM + '.AccessPoint' | |
DBUS_PROPS = 'org.freedesktop.DBus.Properties' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unique(map(heap.objects("org.apache.avalon.framework.configuration.ConfigurationException"), "it.detailMessage.toString()")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
MOUNTPOINT=/mnt/backup | |
notify() { | |
returncode=$1 | |
summary=$2 | |
message=$3 | |
if [ $returncode -gt 0 ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# Grabs the NASA image of the day by RSS feed and updates the gnome | |
# background. add this to your cron jobs to have this happen daily. this is, | |
# obviously, a hack, that is likely to break at the slightest change of NASA's | |
# RSS implementation. yay standards! | |
# | |
# Source: https://awesome.naquadah.org/wiki/NASA_IOTD_Wallpaper | |
FEED='http://www.nasa.gov/rss/lg_image_of_the_day.rss' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
find -type f -printf '%s\n' | awk '{s+=$1} END {print s}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hudson.util.RemotingDiagnostics; | |
script = 'def proc = "ls -1 /media".execute(); proc.waitFor(); println proc.in.text'; | |
for (slave in Jenkins.instance.slaves) { | |
println slave.name; | |
try { | |
println RemotingDiagnostics.executeGroovy(script, slave.getChannel()); | |
} catch (all) { | |
all.printStackTrace(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo 0 | gdb -batch-silent -ex "run" -ex "set logging overwrite on" -ex "set logging file gdb.bt" -ex "set logging on" -ex "set pagination off" -ex "handle SIG33 pass nostop noprint" -ex "echo backtrace:\n" -ex "backtrace full" -ex "echo \n\nregisters:\n" -ex "info registers" -ex "echo \n\ncurrent instructions:\n" -ex "x/16i \$pc" -ex "echo \n\nthreads backtrace:\n" -ex "thread apply all backtrace" -ex "set logging off" -ex "quit" --args "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
od -c -t x1 "$@" |