Extract filenames without their extensions…
18 Mar 2018 -
1 minute read
Extract filenames without their extensions and put it in the clipboard
ls -C | awk -F"." '{print $1}' | xclip -selection c
Extract filenames without their extensions and put it in the clipboard
ls -C | awk -F"." '{print $1}' | xclip -selection c