l'achèvement automatique bash faire un / à la fin d'un répertoire comment je peux le dépouiller?
Merci pour les conseils.
#!/bin/sh
target=$1
function backup(){
date=`date "+%y%m%d_%H%M%S"`
PWD=`pwd`
path=$PWD/$target
tar czf /tmp/$date$target.tar.gz $path
}
backup