[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

@ -3,11 +3,11 @@
if [ -z "$STDIN_COPY_COMMAND" ] || [ -z "$STDOUT_PASTE_COMMAND" ] if [ -z "$STDIN_COPY_COMMAND" ] || [ -z "$STDOUT_PASTE_COMMAND" ]
then then
if [ $WAYLAND_DISPLAY ] if [ -n "$WAYLAND_DISPLAY" ]
then then
STDIN_COPY_COMMAND="wl-copy --foreground --type text/plain" STDIN_COPY_COMMAND="wl-copy --foreground --type text/plain"
STDOUT_PASTE_COMMAND="wl-paste --no-newline" STDOUT_PASTE_COMMAND="wl-paste --no-newline"
elif [ $DISPLAY ] elif [ -n "$DISPLAY" ]
then then
if command -v xclip if command -v xclip
then then
@ -34,7 +34,7 @@ then
then then
STDIN_COPY_COMMAND="clip.exe" STDIN_COPY_COMMAND="clip.exe"
STDOUT_PASTE_COMMAND=":" STDOUT_PASTE_COMMAND=":"
elif [ $TMUX ] elif [ -n "$TMUX" ]
then then
STDIN_COPY_COMMAND="tmux load-buffer -" STDIN_COPY_COMMAND="tmux load-buffer -"
STDOUT_PASTE_COMMAND="tmux save-buffer -" STDOUT_PASTE_COMMAND="tmux save-buffer -"
@ -44,7 +44,7 @@ then
fi > /dev/null fi > /dev/null
fi fi
case "$1" in case $1 in
copy) exec $STDIN_COPY_COMMAND > /dev/null 2>/dev/null ;; copy) exec $STDIN_COPY_COMMAND > /dev/null 2>/dev/null ;;
paste) exec $STDOUT_PASTE_COMMAND < /dev/null 2>/dev/null ;; paste) exec $STDOUT_PASTE_COMMAND < /dev/null 2>/dev/null ;;
"") # Try to guess intention "") # 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 # An example script that converts messages in a syslog file into a
@ -29,7 +29,7 @@ fi
out_file_base=$(basename "$1") out_file_base=$(basename "$1")
counter=0 counter=0
while test -e "${out_file_base}.${counter}.csv"; do while test -e "${out_file_base}.${counter}.csv"; do
counter=`expr ${counter} + 1` counter=$((counter + 1))
done done
export OUT_FILE="${out_file_base}.${counter}.csv" export OUT_FILE="${out_file_base}.${counter}.csv"