Advertisement
cc11rocks

Debian Grammer/Spelling Fixing Script

Sep 3rd, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. echo "What package?"
  3. read package
  4. cd ~/Ubu_Dev_bzr
  5. bzr branch lp:debian/$package
  6. if [ -d $package ]; then
  7.  
  8.     cd $package/debian
  9.     gedit control
  10.     read pause
  11.     bzr diff $package/debian/control
  12.     reportbug -B debian
  13. else
  14.     echo "Branch not found"
  15.     ls
  16. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement