Skip to content

Instantly share code, notes, and snippets.

View corporatepiyush's full-sized avatar

Piyush Katariya corporatepiyush

View GitHub Profile
@corporatepiyush
corporatepiyush / findAndCopy.sh
Created September 4, 2017 09:27
Find file by name and copy to desired destination folder
find <directory> -name 'screen.png' | xargs -n1 cp <file/directory to be copied>
@corporatepiyush
corporatepiyush / Parallel.sh
Created September 4, 2017 09:25
Parallel Processing of Commands or Data
seq 1 10 | xargs -n1 -P5 <any command>
@corporatepiyush
corporatepiyush / CountLines.sh
Created September 4, 2017 09:24
Count Number of Lines in Project files
find $directory$ -type f -name "*.py" | xargs cat | wc -l
@corporatepiyush
corporatepiyush / ListSSHKeys.sh
Created September 4, 2017 09:23
List SSH Keys
for keyfile in ~/.ssh/id_*; do ssh-keygen -l -f "${keyfile}"; done | uniq
@corporatepiyush
corporatepiyush / download.sh
Last active September 4, 2017 08:43
Extract Unique Youtube URL from Given Page or Playlist Page with Jquery
// download audio files and convert them to mp3
cat links.txt | xargs -n1 -P2 youtube-dl --extract-audio --audio-format mp3 --audio-quality 9