1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-09-28 08:13:06 +02:00
cdf2018-principal/raspberrypi/board/robotech/cdfprincipal/rootfs_overlay/root/.profile

22 lines
349 B
Plaintext
Raw Normal View History

2018-05-06 01:14:09 +02:00
#!/bin/sh
2018-02-07 17:57:01 +01:00
alias la='ls -al'
alias ll='ls -l'
alias cp="cp -i"
alias mv="mv -i"
alias free='free -m'
alias df='df -h'
2018-04-04 16:17:13 +02:00
export PS1="[\u@\h \W] "
2018-02-07 17:57:01 +01:00
export PS2="> "
export PS3="+ "
export PS4="- "
2018-05-02 08:26:35 +02:00
alias r="/etc/init.d/S50chef restart"
alias s="/etc/init.d/S50chef stop"
alias c="cd /opt/chef/"
2018-05-06 01:14:09 +02:00
l()
{
tail -f $(find /opt/chef/log | sort | tail -1)
}