bilgi 452 B

1234567891011121314151617
  1. #!/bin/bash
  2. hata(){
  3. echo "bilgi alınacak komut paremetresi eksik";
  4. exit 1
  5. }
  6. [ $1 ] && _komut=$1 || hata
  7. for sayfa in 1 2 3 4 5 6 7 8 l n;do
  8. yanit=$(curl -s --head https://linux.die.net/man/$sayfa/${_komut} | head -n 1 | cut -d' ' -f2)
  9. if [ $yanit == "200" ];then
  10. curl -s https://linux.die.net/man/$sayfa/${_komut} > /tmp/${_komut}.html;
  11. [ $(type -p lynx) ] && lynx /tmp/${_komut}.html ||echo "file:///tmp/${_komut}.html"
  12. exit 1
  13. fi
  14. done