mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 22:30:51 +00:00
8 lines
141 B
Bash
8 lines
141 B
Bash
#! /bin/bash
|
|
#printf "$@" | xsel -b -i
|
|
filelist=""
|
|
for line in "$@"; do
|
|
filelist="$filelist$line\n"
|
|
done
|
|
printf "$filelist" | xsel -b -i
|