Usually, when typing ‘ls’ and pressing
You can enable this mode by adding to /etc/inputrc or your ~/.inputrc
"\e[A":history-search-backward
"\e[B":history-search-forward
sudo vi /etc/network/interfaces
Append the following configuration:
auto eth0:0
iface eth0:0 inet static
name Ethernet alias LAN card
address 192.168.1.11
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
A-DayS » Creating ethernet alias for eth0 network device on Ubuntu
To find all files modified in the last 24 hours (last full day) in current directory and its sub-directories:
find . -mtime -1 -print
Tux Training » Blog Archive » Find files modified at a certain time