CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/data/sounds/aiff2wav.rb
Views: 1904
1
#!/usr/bin/env ruby
2
3
Dir.open(".").entries.grep(/.aiff$/).each do |inp|
4
out = inp.gsub(".aiff", ".wav")
5
system("sox #{inp} #{out}")
6
end
7
8
9