From 42ed14b89302bb02ebdb0e582fa681442a1d9ad8 Mon Sep 17 00:00:00 2001 From: Andrew Lorimer Date: Thu, 16 Aug 2018 21:06:46 +1000 Subject: [PATCH] add xfertest.sh, i3blocks-music ampersand --- i3blocks-music.pl | 1 + xfertest.sh | 378 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 379 insertions(+) create mode 100755 xfertest.sh diff --git a/i3blocks-music.pl b/i3blocks-music.pl index 6a8cc72..cd32d15 100755 --- a/i3blocks-music.pl +++ b/i3blocks-music.pl @@ -28,6 +28,7 @@ push(@metadata, $artist) if $artist; my $title = qx(playerctl $player_arg metadata title); $title =~ s/(\s|\s\()[Ff]([et]at[. ].*|t.*)//; +$title =~ s/&/&/; push(@metadata, $title) if $title; # Print stuff diff --git a/xfertest.sh b/xfertest.sh new file mode 100755 index 0000000..d8386bb --- /dev/null +++ b/xfertest.sh @@ -0,0 +1,378 @@ +#!/bin/sh +# +# xfertest -- test transfer speeds of ftp, samba and rcp. +# +Program='Samba' +Verbose=0 +Filesize=0 +Debug=0 +#JUNK='2>&1' # make output appear for debugging. +JUNK='>/dev/null 2>&1' + + +main() { + while [ "$1" != "" ]; do + case "$1" in + -s) Program='Samba';; + -f) Program='Ftp';; + -r) Program='Rcp';; + -n) Program='Nfs';; + -v) Verbose=1;; + -d) Debug=1; Verbose=1;; + *) break;; + esac + shift + done + if [ $# -lt 2 ]; then + say "xfertest: you must provide a host and a test file." + say "Usage: $0 [-sfr -v] host file" + exit 1 + fi + + + host="$1" + file="$2" + + if [ ! -f "$file" ]; then + say "$0: $file not found, halting." + exit 1 + else + Filesize=`ls -l $file | awk '{print $5}'` + fi + cp $file /tmp + cd /tmp + $Program $host $file +} + +# +# Rcp -- time Remote CoPy +# +Rcp() { + host="$1" + file="$2" + + if [ "$Verbose" -eq 1 ]; then + say "benchmarking rcp on $host with file $file" + say "getting $file 5 times" + fi + rcp $host:$file . # Prime the pump + for i in 1 2 3 4 5; do + time rcp $host:$file . + done 2>&1 | timeStats "rcp get $Filesize" + + if [ "$Verbose" -eq 1 ]; then + say "putting $file 5 times" + fi + f=`basename $file` + rcp $f $host:$file + + for i in 1 2 3 4 5; do + time rcp $f $host:$file + done 2>&1 | timeStats "rcp put $Filesize" +} + + + +# +# Nfs -- time nfs via timing cp. "host" will be ignored. +# +Nfs() { + host="$1" + file="$2" + + if [ "$file" != "" ]; then + : + else + say "you must supply a host (which is then ingored)" + exit 1 + fi + + if [ "$Verbose" -eq 1 ]; then + say "benchmarking nfs (cp) on $host with file $file" + say "getting $file 5 times" + fi + cp $file . # Prime the pump + for i in 1 2 3 4 5; do + time cp $file ./junk + done 2>&1 | timeStats "nfs get $Filesize" + + if [ "$Verbose" -eq 1 ]; then + say "putting $file 5 times" + fi + f=`basename $file` + cp $f $file + + for i in 1 2 3 4 5; do + time cp $f $file + done 2>&1 | timeStats "nfs put $Filesize" +} + + +# +# timeStats -- summarize stats from /bin/time, used for nfs/cp and rcp +# +timeStats() { + nawk ' + BEGIN { + avg=0.0; + } + /.*/ { + if (debug) { + print "#", $0; + } + } + + /real/ { + avg += $2; + if (verbose) { + print $2; + } + next; + } + /user|sys|^[ ]*$/ { + next; + } + /.*/ { + print $0; + } + END { + if (verbose) { + print "#pg op size time kb/sec"; + } + if (avg == 0.0 ) { + printf("%s 0.0 N/A\n",description); + } + else { + time = avg / 5; + printf("%s %.2f %.2f\n",description,\ + time, (size/time) /1000); + } + } +' description="$1" verbose=$Verbose size=$Filesize debug=$Debug +} + + +# +# ftp -- time File Transfer Program +# +Ftp() { + host="$1" + file="$2" + + if [ "$Verbose" -eq 1 ]; then + say "benchmarking ftp on $host with file $file" + fi + say "Warning: this will temporarily overwrite your .netrc password" + say "$0: enter password to use for ftp" + read password + + trap '' 1 2 3 4 5 6 7 8 9 # Disable ^C et all. + if [ -f $HOME/.netrc ]; then + mv $HOME/.netrc $HOME/saved.netrc + fi + cat >$HOME/.netrc </dev/null 2>&1 </tmp/$$ 2>&1 </dev/null 2>&1 </tmp/$$ 2>&1 </dev/null 2>&1 </tmp/$$ 2>&1 </dev/null 2>&1 </tmp/$$ 2>&1 <&2 +} + +main "$@" + -- 2.43.2