linuxShortcuts/Dolphin/copyFullPath.sh

8 lines
141 B
Bash
Raw Normal View History

#! /bin/bash
#printf "$@" | xsel -b -i
filelist=""
for line in "$@"; do
filelist="$filelist$line\n"
done
printf "$filelist" | xsel -b -i