Download http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
Make the .bin file executable
$ chmod a+x AdobeAIRInstaller.bin
Run the .bin file by executing following
#!/bin/bash | |
# | |
# | |
# Copyright (c) 2015 Javier Sayago <[email protected]> | |
# Contact: [email protected] | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# |
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
#!/bin/bash | |
echo "Hola Mundo" | |
hola=1 |
#!/bin/bash | |
#md2pdf: small flavored markdown converter to pdf using pandoc | |
#by demiurgosoft | |
if [ $# -eq 0 ] | |
then echo "Need at least one argument md2pdf [files]"; | |
else | |
for var in "$@" | |
do | |
filename=$(basename "$var") |
#!/bin/bash | |
#hasselhoff attack taken to a new level | |
#by demiurgosoft | |
DIR=/home/$(whoami)/hasselhoff.jpg | |
MESSAGE="you have been hasselhoffed" | |
IMAGE_URL=http://www.ljpaez.es/imagen/hasselhoff.jpg | |
wget $IMAGE_URL -q | |
mv ./hasselhoff.jpg $DIR | |
gsettings set org.gnome.desktop.background picture-uri file://$DIR |
Download http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
Make the .bin file executable
$ chmod a+x AdobeAIRInstaller.bin
Run the .bin file by executing following
#!/usr/bin/env bash | |
# Usage: ./geany.sh [host] | |
host="${1:[email protected]}" | |
# The host key might change when we instantiate a new VM, so | |
# we remove (-R) the old host key from known_hosts | |
ssh-keygen -R "${host#*@}" 2> /dev/null |
#!/usr/bin/env bash | |
apt-get -y update | |
apt-get -y upgrade | |
apt-get -y install git build-essential autoconf zlib1g-dev libssl-dev \ | |
libreadline-dev libyaml-dev libcurl4-openssl-dev curl python-software-properties \ | |
ruby1.9.1 ruby1.9.1-dev rubygems1.9.1 irb1.9.1 ri1.9.1 rdoc1.9.1 | |
gem install chef ruby-shadow --no-ri --no-rdoc |
#!/usr/bin/env bash | |
# Usage: ./deploy.sh [host] | |
host="${1:[email protected]}" | |
# The host key might change when we instantiate a new VM, so | |
# we remove (-R) the old host key from known_hosts | |
ssh-keygen -R "${host#*@}" 2> /dev/null |