avr 19

Voici un rapide billet suite à l’ajout de plusieurs fonctionnalités à CutMyUrl. Au menu de cette nouvelle version, un historique des adresses ainsi qu’une fonction de suppression de celui-ci ;) .

Syntaxe :

Pour afficher l’historique :

$ cutmyurl -H

Supprimer l’historique :

$ cutmyurl -d

L’historique des adresses se trouve dans le répertoire :

$HOME/.config/cutmyurl

Si vous le souhaitez, vous pouvez changer cet emplacement en modifiant la ligne présente dans la section ## Variables ## :

path="$HOME/.config/cutmyurl" 		# path

D’ailleurs vous pouvez absolument tout modifier de ce script !

Code :

Voici le script en lui même suite à la demande de Bacardi55 :

#!/bin/sh
 
#  CutMyUrl
#  Version 1.4
#  A shortener url command line
#  Using the open source service ur1.ca, http://ur1.ca/
#  By Lopes Ferreira David, http://ubunblox.servhome.org/
#  ubunblox@gmail.com
#  Licence GPL
#  Depends : curl, xclip
#########################
 
 
	## Variables ##
r="\033[0m"				# regular
f="\033[1m"				# fat
v="1.4"					# version
n="CutMyUrl"				# name
u="http://ur1.ca/"			# url
path="$HOME/.config/cutmyurl" 		# path
log="$path/log"				# log file
date=`date '+%F %T'`			# date
#
#
	## Check for arg in $2 ##
if [ -n $2 ] ; then 
	arg=$2
fi
#
#
	## Check for path ##
if ! [ -d $path ] ; then
	mkdir -p $path
fi
#
#
	## Check for log file ##
if ! [ -r $log ] ; then
	echo -e "## $n log file ## \n \n " > $log
fi
#
#
	## Fonction cut url ##
_cut_url () {
short_url=$(curl -s "$u" -d"longurl=$arg" | grep 'Your ur1 is' | sed 's/^.*<a href="//;s/".*$//')
}
#
#
	## Fonction display short url ##
_url () {
_cut_url
if [ -z $short_url ] ; then
	echo -e "\n$f---------→ Need help $USER ? $r\n"
	_help
else
	echo -e "\n$short_url \n"
	_log
fi	
}
#
#
	## Fontion copy short url to clipboard ##
_copy () {
_cut_url
if [ -z $short_url ] ; then
	echo -e "\n$g---------→ Need help $USER ? $n\n"
	_help
else
	echo "$short_url" |  xclip -selection c	
	echo -e "\nThe url $f"$short_url"$r has been copied to your clipboard. \n"
	_log
fi	
}
#
#
	## Fonction log ##
_log (){
sed -i '3i\'"$date \t$arg \t$short_url"'' $log
}
#
#
	## Fontion history ##
_hist () {
less $log
}
#
#
	##Fonction delete hisotory ##
_delete () {
echo -e "Do you really want to$f delete$r the history file ? [Y/N]"
read reply
case "$reply" in
	y | Y | yes | YES | o | O | oui | OUI )	echo -e "## $n log file ## \n \n " > $log & echo "History deleted, bye !"
	;;
	* )					echo "Nothing to do, bye !"
	;;
esac
}
#
#
	## Fonction help ##
_help () {
echo -e "$f NAME$r"
echo -e "\t$f $n $r- Shortener url command line. \n"
echo -e "$f SYNOPSIS$r"
echo -e "\t$f cutmyurl$r OPTION [URL]...\n"
echo -e "$f DESCRIPTION$r"
echo -e "\t $f-u, --url $r \t[URL]\tShort url."
echo -e "\t $f-c, --copy $r \t[URL]\tCopy short url to clipboard."
echo -e "\t $f-h, --help $r\t\tHelp."
echo -e "\t $f-v, --version $r\t\tVersion."
echo -e "\t $f-i, --info $r\t\tInformations."
echo -e "\t $f-H, --history $r\t\tView the history file."
echo -e "\t $f-d, --delete $r\t\tDelete history file.\n"
echo -e "$f EXAMPLES$r"
echo -e "\t$f cutmyurl$r -u http://google.com"
echo -e "\t$f cutmyurl$r -c http://google.com\n"
echo -e "$f END$r"
}
#
#
	## Fonction informations ##
_info () {
echo -e "$f $n$r"
echo -e "\n\t # A shortener url Command line "
echo -e "\t # Using the open source service ur1.ca, http://ur1.ca/"
echo -e "\t # By Lopes Ferreira David, http://ubunblox.servhome.org/"
echo -e "\t # ubunblox@gmail.com"
echo -e "\t # Licence GPL \n"
}
#
#
	## Fonction version ##
_version () {
echo -e "$f VERSION$r"
echo -e "\t$f version :$r\t$v\n"
echo -e "$f CHANGE LOG$r"
echo -e "\t$f 19/04/2011 :$r\tAdd history fonction and delete fonction\n"
echo -e "\t$f 18/04/2011 :$r\tChange in copy fonction\n"
echo -e "\t$f 18/04/2011 :$r\tAdd copy fonction\n"
echo -e "\t$f 16/04/2011 :$r\tFirst release\n"
echo -e "$f DEPENDS$r"
echo -e "\t$f curl, xclip$r\n"
}
#
#
	## Start CutMyUrl ##
case "$1" in
	-h | --help)		_help
	;;
	-i | --info)		_info
	;;
	-v | --version)		_version
	;;
	-u | --url)		_url
	;;
	-c | --copy)		_copy
	;;
	-H | --history)		_hist
	;;
	-d | --delete)		_delete
	;;
	*)			_help
esac
#
#
	## End ##
exit 0
#
#

La prochaine version inclura une fonction de recherche, à bientôt !

Liens :

Dans la même catégorie :

écrit par David Lopes Ferreira

2 commentaires à “CutMyUrl : Version 1.4 disponible”

  1. Erus_Iluvatar Dit:

    Au fait, pourquoi ne pas utiliser $XDG_CONFIG_HOME, au lieu de $HOME/.config?

  2. David Lopes Ferreira Dit:

    @Erus_iluvatar : Pourquoi pas… Ça ne change pas grand chose au déroulement du script il me semble ;)

Laisser une Réponse