source: freewrt/package/base-files/default/etc/profile@ 475ad56

freewrt_1_0 freewrt_2_0
Last change on this file since 475ad56 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 319 bytes
Line 
1#!/bin/sh
2[ -f /etc/banner ] && cat /etc/banner
3
4export PATH=/bin:/sbin:/usr/bin:/usr/sbin
5export PS1='\u@\h:\w\$ '
6
7[ -x /usr/bin/less ] || alias less=more
8[ -x /usr/bin/vim ] || alias vim=vi
9
10arp() { cat /proc/net/arp; }
11ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
12reboot() { ifdown wan 2>&1 >/dev/null ; /sbin/reboot; }
Note: See TracBrowser for help on using the repository browser.