[example files]: fix shellcheck identified issues

This commit is contained in:
a1346054 2021-08-25 10:45:51 +00:00
parent 1bd81ec630
commit 03fd7cc52d
2 changed files with 10 additions and 10 deletions

View File

@ -1,13 +1,13 @@
#! /bin/sh
#!/bin/sh
# Wrapper for various clipboard I/O on Linux desktop environments and Windows emulations thereof
if [ -z "$STDIN_COPY_COMMAND" ] || [ -z "$STDOUT_PASTE_COMMAND" ]
then
if [ $WAYLAND_DISPLAY ]
if [ -n "$WAYLAND_DISPLAY" ]
then
STDIN_COPY_COMMAND="wl-copy --foreground --type text/plain"
STDOUT_PASTE_COMMAND="wl-paste --no-newline"
elif [ $DISPLAY ]
elif [ -n "$DISPLAY" ]
then
if command -v xclip
then
@ -34,7 +34,7 @@ then
then
STDIN_COPY_COMMAND="clip.exe"
STDOUT_PASTE_COMMAND=":"
elif [ $TMUX ]
elif [ -n "$TMUX" ]
then
STDIN_COPY_COMMAND="tmux load-buffer -"
STDOUT_PASTE_COMMAND="tmux save-buffer -"
@ -44,7 +44,7 @@ then
fi > /dev/null
fi
case "$1" in
case $1 in
copy) exec $STDIN_COPY_COMMAND > /dev/null 2>/dev/null ;;
paste) exec $STDOUT_PASTE_COMMAND < /dev/null 2>/dev/null ;;
"") # Try to guess intention

View File

@ -1,4 +1,4 @@
#! /bin/bash
#!/usr/bin/env bash
#
# An example script that converts messages in a syslog file into a
@ -29,7 +29,7 @@ fi
out_file_base=$(basename "$1")
counter=0
while test -e "${out_file_base}.${counter}.csv"; do
counter=`expr ${counter} + 1`
counter=$((counter + 1))
done
export OUT_FILE="${out_file_base}.${counter}.csv"