Cinnamon 2.0.14 https://github.com/linuxmint/Cinnamon/archive/2.0.14.tar.gz
Cinnamon Master https://github.com/linuxmint/Cinnamon.git
Cinnamon 2.0.14 https://github.com/linuxmint/Cinnamon/archive/2.0.14.tar.gz
Cinnamon Master https://github.com/linuxmint/Cinnamon.git
| #!/bin/bash | |
| #### | |
| # Split MySQL dump SQL file into one file per table | |
| # based on http://blog.tty.nl/2011/12/28/splitting-a-database-dump | |
| #### | |
| if [ $# -lt 1 ] ; then | |
| echo "USAGE $0 DUMP_FILE [TABLE]" | |
| exit |
These scripts are for people who want an alternative to the official Slackware provided makepkg.
Why would you want that?
Two versions are provided:
| #!/bin/bash | |
| # latest-chrome Version 1.5 | |
| # This script will find the latest Google Chrome binary package, | |
| # download it and repackage it into Slackware format. | |
| # I don't use Chrome for regular browsing but it is handy for | |
| # comparative tests against Vivaldi. :P | |
| # Copyright 2018 Ruari Oedegaard, Oslo, Norway |
| #!/bin/bash | |
| # latest-firefox Version 1.6.3 | |
| # Contributer: drgibbon (thanks!) | |
| # This script will find the latest Firefox binary package, download it | |
| # and repackage it into Slackware format. | |
| # I don't use Firefox for regular browsing but it is handy for | |
| # comparative tests against Vivaldi. :P |
| #!/bin/sh | |
| # | |
| # getupdates (0.9.6) - A script to fetch updates for Slackware stable | |
| # | |
| # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| # Version 2, December 2004 | |
| # | |
| # Copyright (C) 2017 Ruari Oedegaard, Oslo, Norway | |
| # | |
| # Everyone is permitted to copy and distribute verbatim or modified |
| #!/bin/bash | |
| # latest-opera Version 2.1 | |
| # This script will find the latest Opera stable binary package, | |
| # download it and repackage it into Slackware format. | |
| # Copyright 2018 Ruari Oedegaard, Oslo, Norway | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this script, with or without modification, is |
| ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### | |
| ### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget. | |
| ### You can download all the binaries one-shot by just giving the BASE_URL. | |
| ### Script might be useful if you need Oracle JDK on Amazon EC2 env. | |
| ### Script is updated for every JDK release. | |
| ### Features:- | |
| # 1. Resumes a broken / interrupted [previous] download, if any. | |
| # 2. Renames the file to a proper name with including platform info. |
| #!/bin/bash | |
| #set -o verbose | |
| #set -x | |
| #set -v | |
| #sed -e :a -e '$!N;s/ \n/,/;ta' | |
| #start the file over and erase contents | |
| echo '' > details.csv | |
| #write the column headings |
| FROM fedora:latest | |
| RUN yum install -y attr golang git docker-registry | |
| # this way we'll set something in a non-standard tar pax header for this image | |
| RUN touch file && setfattr -n user.vbatts -v test ./file && getfattr -d ./file | |
| # | |
| RUN curl -kL https://github.com/dotcloud/docker/archive/v0.9.1.tar.gz | tar -zx | |
| RUN mkdir -p /gopath/src/github.com/dotcloud && \ |