Last active
September 29, 2023 16:57
-
-
Save douglascrp/fb1ef5ab2710022dd9dadad674e1f696 to your computer and use it in GitHub Desktop.
Linux Alfresco aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vim ~/.bashrc | |
Replace: | |
alias ll with "ls -ltra" | |
Create new: | |
alias alftail='tail -f /opt/alfresco/logs/alfresco.log' | |
alias alfless='less /opt/alfresco/logs/alfresco.log' | |
alias alfstart='service alfresco start' | |
alias alfstop='service alfresco stop' | |
alias alfrestart='service alfresco restart' | |
alias alfapplyamps='service alfresco stop && /opt/alfresco/addons/apply.sh all && service alfresco start' | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment