Skip to content

Instantly share code, notes, and snippets.

View Hossam-Abdin's full-sized avatar

Hossameldin Abdin Hossam-Abdin

View GitHub Profile
#!/bin/bash
cd
curl https://ftp.cs.ru.nl/Clean/Clean30/linux/clean3.0_64.tar.gz --output clean.zip
tar -xzvf clean.zip
rm clean.zip
#!/bin/sh
mkdir temp
cd temp
if [ "$1" = "-mp3" ]; then
youtube-dl -x --audio-format mp3 $2
else
youtube-dl $1
fi
file_name=$(ls)