Skip to content

Commit

Permalink
Merge pull request #45 from illwieckz/shebang
Browse files Browse the repository at this point in the history
start-of-the-art shebang
  • Loading branch information
NicolasBernaerts authored Aug 3, 2019
2 parents 5fe7d2a + 6ff788b commit 4efd47b
Show file tree
Hide file tree
Showing 84 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion android/adb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ------------------------------------------
# Launcher for latest Google platform tools
#
Expand Down
2 changes: 1 addition & 1 deletion android/android-screenshot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Takes screenshot from android devices
# connected thru ADB
Expand Down
2 changes: 1 addition & 1 deletion android/fastboot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ------------------------------------------
# Launcher for latest Google platform tools
#
Expand Down
2 changes: 1 addition & 1 deletion android/mtp-declare
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------------------------------------
# Setup your Linux computer to automount any connected MTP device
#
Expand Down
2 changes: 1 addition & 1 deletion backup/data-transfer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------------------------
# Script to backup/restore current user folders and application data
# on any removable media during computer complete reinstallation
Expand Down
2 changes: 1 addition & 1 deletion backup/lsyncd-backup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Setup realtime backup environment
# for local directories on a remote SSH server
Expand Down
2 changes: 1 addition & 1 deletion backup/rsync-backup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Script to backup data on a Rsync server
#
Expand Down
2 changes: 1 addition & 1 deletion desktop/desktop-display
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Command to display dialog box on latest desktop session
# If called from an interactive session,
# it runs the display command whithout specific behaviour
Expand Down
2 changes: 1 addition & 1 deletion desktop/desktop-session.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Dump latest display environment variables to /tmp/.latest-desktop-session.ini
# Variables are :
# - USER
Expand Down
2 changes: 1 addition & 1 deletion flashair/flashair-command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------------
# Tool to synchronise Toshiba Flashair SD Card
# It synchronise either :
Expand Down
2 changes: 1 addition & 1 deletion flashair/flashair-common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------------
# Common parameters for Toshiba Flashair SD Card synchronisation
# -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion flashair/flashair-daemon
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Daemon to detect FlashAir card communication events
#
Expand Down
2 changes: 1 addition & 1 deletion flashair/flashair-network
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Flashair SD Card wifi network detection
#
Expand Down
2 changes: 1 addition & 1 deletion image/image-convert
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------------------------
# Convert image files to a list of formats described in ~/.image-convert.conf
#
Expand Down
2 changes: 1 addition & 1 deletion image/image-convert-declare
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------------------------
# Declare all model files for Nautilus Image convert extension
#
Expand Down
2 changes: 1 addition & 1 deletion image/image-iptc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Tool to write main IPTC tags to image files
# Depends on :
Expand Down
2 changes: 1 addition & 1 deletion image/image-level-optimize
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Optimize image to extend level histogram
# over the full range from black to white
Expand Down
2 changes: 1 addition & 1 deletion image/image-rotate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Rotate a list of image files
#
Expand Down
2 changes: 1 addition & 1 deletion image/imagemagick-enable-pdf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------------------------
# Modify ImageMagick configuration file to allow PDF and PostScript generation
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/android
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install android tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/arduino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install arduino environment
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/gnomeshell
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to configure GnomeShell environment for Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/graphical
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install graphical tools on Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/internet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ----------------------------------------------------------------
# Script to install internet tools on Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/multimedia
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install multimedia tools for Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/office
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install office tools on Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/post-install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------------------------------------
# Ubuntu Bionic 18.04 LTS Post-installation script
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/ssd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to tweak configuration for SSD disks for Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/tweaks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to apply different tweaks for Bionic
# - wifi
Expand Down
2 changes: 1 addition & 1 deletion install/bionic/utilities
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install misc utilities & tools on Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/trusty/post-ubuntu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Ubuntu 14.04 LTS Post-installation script
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/android
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install android tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/assistance
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Remote assistance installation script for Bionic
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/gnome-fallback
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install gnome environment
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/gnome-shell
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to configure GnomeShell environment
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/graphical
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install graphical tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/internet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ----------------------------------------------------------------
# Script to install internet tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/multimedia
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install multimedia tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/office
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install office tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/post-install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------------------------------------
# Ubuntu 16.04 LTS Post-installation script
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/ssd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to tweak configuration for SSD disks
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/utilities
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to install misc utilities & tools
#
Expand Down
2 changes: 1 addition & 1 deletion install/xenial/wifi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------
# Script to tweak wifi cards
#
Expand Down
2 changes: 1 addition & 1 deletion mozilla/firefox-extension-manager
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------------------------------------------------------------
# Command line script to handle Firefox 60+ extensions
# Manage installation, upgrade and removal of system wide and user extensions
Expand Down
2 changes: 1 addition & 1 deletion mozilla/mozilla-extension-manager
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ------------------------------------------------------------------------
# Command line script to handle Firefox and Thunderbird extensions
# Manage installation, upgrade and removal of system wide and user extensions
Expand Down
2 changes: 1 addition & 1 deletion mozilla/tnef/tnef-extract
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Script to extract TNEF attachments
# in a temporary directory and
Expand Down
2 changes: 1 addition & 1 deletion nautilus/bwrap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# bwrap wrapper to correct nautilus 3.26.4+ bug for external thumbnailers under debian based distros
# * add --ro-bind needed by imagemagick tools
# * replaces --symlink calls with equivalent --ro-bind calls
Expand Down
2 changes: 1 addition & 1 deletion nautilus/extensions/exif-alltags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# ---------------------------------------------------------
# Nautilus extension to display EXIF properties tab
# Procedure :
Expand Down
2 changes: 1 addition & 1 deletion nautilus/extensions/exif-columns.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# ---------------------------------------------------
# Nautilus extension to add EXIF specific columns
# Procedure :
Expand Down
2 changes: 1 addition & 1 deletion nautilus/extensions/exif-geotag.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# ---------------------------------------------------------
# Nautilus extension to add Geolocalisation properties tab
# Procedure :
Expand Down
2 changes: 1 addition & 1 deletion nautilus/nautilus-newfile-action
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Handle nautilus action to create an empty file from a model
#
Expand Down
2 changes: 1 addition & 1 deletion nautilus/nautilus-newfile-declare
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# -------------------------------------------------------------
# Declare all model files for Nautilus New File extension
#
Expand Down
2 changes: 1 addition & 1 deletion nautilus/nautilus-newfile-models/Bash Script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# New bash script
#
Expand Down
2 changes: 1 addition & 1 deletion pdf/generate-booklet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------------
# Imposition of a document to generate a PDF booklet
# target format is selectable (A5, A4, ...) and default format is A4
Expand Down
2 changes: 1 addition & 1 deletion pdf/pdf-generate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Generate a PDF document from a given list of documents
# Documents are added in final document following
Expand Down
2 changes: 1 addition & 1 deletion pdf/pdf-repair
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Repair broken PDF file using gs
#
Expand Down
2 changes: 1 addition & 1 deletion pdf/pdf-rotate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Rotate a list of PDF documents
#
Expand Down
2 changes: 1 addition & 1 deletion scanner/envelope2address
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ----------------------------------------------
# Utility to scan envelopes
# and retrieve address thru OCR
Expand Down
2 changes: 1 addition & 1 deletion scanner/scan2folder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ----------------------------------------------
# Utility to Scan documents from HP AIO printer/scanner
# straight to a folder
Expand Down
2 changes: 1 addition & 1 deletion ssd-trim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
#
# Detect ext4 devices and start trim for SSD
Expand Down
2 changes: 1 addition & 1 deletion tags/tags-date
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------------------------------
# Tool to handle date tags
#
Expand Down
2 changes: 1 addition & 1 deletion tags/tags-update
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Tool to write main XMP tags to compatible files
#
Expand Down
2 changes: 1 addition & 1 deletion thumbnailer/apk/apk-thumbnailer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Thumbnailer for APK archives files
# Display embedded icon and version number (option)
Expand Down
2 changes: 1 addition & 1 deletion thumbnailer/gimp/gimp-thumbnailer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Thumbnailer for GIMP XCF files
#
Expand Down
2 changes: 1 addition & 1 deletion thumbnailer/graphviz/graphviz-preview
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ---------------------------------------------------
# Preview of Graphviz .DOT files
#
Expand Down
2 changes: 1 addition & 1 deletion thumbnailer/graphviz/graphviz-thumbnailer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# --------------------------------------------
# Thumbnailer for Graphviz .DOT files
#
Expand Down
Loading

0 comments on commit 4efd47b

Please sign in to comment.