Advertisement
Guest User

Untitled

a guest
Sep 7th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. [aorth@noma: ~/android/CM10]$ type -a reposync
  2. reposync is a function
  3. reposync ()
  4. {
  5.     case `uname -s` in
  6.         Darwin)
  7.             repo sync -j 4 "$@"
  8.         ;;
  9.         *)
  10.             schedtool -B -n 1 -e ionice -n 1 repo sync -j 4 "$@"
  11.         ;;
  12.     esac
  13. }
  14. [aorth@noma: ~/android/CM10]$ reposync
  15. ionice: executing repo failed: No such file or directory
  16. [aorth@noma: ~/android/CM10]$ which repo
  17. /home/aorth/bin/repo
  18. [aorth@noma: ~/android/CM10]$ echo $PATH
  19. /usr/lib/jvm/java-6-openjdk/bin:/usr/local/bin:/usr/local/sbin:/opt/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/games/bin:/opt/bin:/opt/sbin:~/bin
  20. [aorth@noma: ~/android/CM10]$ uname -a
  21. Linux noma 3.5.3-2-ck #1 SMP PREEMPT Mon Aug 27 16:04:26 EDT 2012 x86_64 GNU/Linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement