All Questions
4 questions
0
votes
2
answers
252
views
change permissions to a file and everything inside , recursively
So I want to create an alias called changeAllPermisions that accepts one parameter argument in such a way that when changeAllPermissions argument is called , both Group and Other do not have access to ...
0
votes
1
answer
547
views
make custom commands on android 4.4.2
I want to program and debug in my android phone. To do that I downloaded c4droid and it's gcc plugin.
after a lot of tries I understood that gcc is in directory /data/data/com.n0n3m4.droidc/files/gcc/...
2
votes
3
answers
4k
views
Executing zsh rehash after build
I have a build script that can change what binaries are in my $PATH (it doesn't edit $PATH itself, but it adds/deletes files to folders that are already in $PATH). zsh's autocompletion doesn't update ...
2
votes
2
answers
2k
views
creating simple command for sudo apt-get install?
I need to run these commands very often:
sudo apt-get install <package>
sudo apt-get remove <package>
Can I make it simple like:
install <package>
remove <package>
I think ...