「Linux入門」よく利用するshellコマンドのまとめ第1回
cdコマンド
#cd /etc
# cd
# cd ..
# cd –
cp コマンド
#cp file file1
#cp dir1 dir2 -r
chmodコマンド
#chmod u+r file
#chmod u-w file
#chmod u=x file
#chmod 777 file
chownコマンド
#chown user1 file
#chown :user2 file
#chown user1:user2 file
catコマンド
#cat file
findコマンド
#find ~/ -name “*.c"
#find ~/ -type f
grepコマンド
#grep “oosa" demo.c
#grep “orange" /opt/src/*.c -rwnH
#find /opt/src -type f | xargs grep “orange" -wnH
ifconfigコマンド
#ifconfig
#ifconfig, ifconfig eth0 172.17.2.200
#ifconfig eth0 down
#ifconfig eth0 up
killコマンド
#kill -s SIGKILL 8908
#kill -s SIGKILL -8908
#kill -9 8908
lsコマンド
#ls
#ls -l
#ls -a
lnコマンド
#ln file1 file2
#ln ademo.txt lna.tex -s
more/lessコマンド
#more file
#less file
#ps -ef | more
#ps -ef | less
manコマンド
#man ls