@hshustc
2017-04-21T16:21:15.000000Z
字数 1917
阅读 2337
Linux
为知笔记里面记录的东西越来与多,有时候为了查阅某条linux而进行全局查找反而不太方便,因此才有了这篇博客的诞生,主要记录linux下常用又不容易记住的命令(针对作者而言),方便查阅。
jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb
git clone --recursive https://github.com/yjxiong/anet2016-cuhk
#If you happen to forget adding --recursive to the command. You can still go to the project directory and issue
git submodule update --init
rar x file.tar(带路径解压)
touch test_$(date +%F-%T).txt
touch test_$(date +%F-%H-%M).txt
timestamp = datestr(datevec(now()), 'dd.mmm.yyyy:HH.MM.SS');
diary_file = fullfile('log', [opts.dataset, '_cnn_train_seed-', num2str(opts.seed), '_', timestamp, '_log.txt']);
diary(diary_file);
fprintf('Logging output in %s\n', diary_file);
diary on;
imdb_cnn_triain(imdb, opts); %code
diary off
Options->Option interface
Menus and Toolbar:Main Menu
//3400行 Latex编译快捷键(shift+ctrl+L)
3520行 PDFTeXify编译快捷键(shift+ctrl+P)
3960行 Help快捷键(F1)
两者互换,然后右键main menu.ini点击load script使之立即生效
Options->Execution Modes->Tex Options 可以自定义PDFTeXify Method
grep -E "http" ./ -R --exclude-dir=.git
grep -E "http" ./ -R --exclude-dir={.git, res, bin}
ctrl+b % 左右分屏
ctrl+b ” 上下分屏
rd /s /q 目录名 #这个有点乱入了。。。不过删除硬盘中大文件确实好用
lsb_release -a
nvidia-smi [-q]
watch -n 10 nvidia-smi #每10s先是一次显存的情况
sed 's/source/OKSTR/' tmp.txt
将tmp.txt中的source替换成OKSTR
shift+V
选中多行后shift+>
多行缩进,写python代码时十分有用
tar -cf all.tar *.jpg
#将所有的jpg文件打包成all.tar, -c压缩,-f指定包的文件名
tar -xf all.tar -C /tmp
#将all.tar解压到/tmp目录
https://114.214.166.119/svn/hsh/
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
使用方法:可以通过如下方式设置文章正文的字体大小,\begin{document} \small
采用默认的时候,正文肢体的大小是\normalsize
df -h:
所有文件系统的可用空间以及使用情形
du -h --max-depth=1 ./:
当前目录下所有文件夹大小,--max-depth指定深入目录层次
du -h --max-depth=1 ./*:
同上,但包含文件
适用于当复制代码时经常会造成缩进混乱的情形
Vim:gg=G
Matlab:ctrl+i
VS2013:ctrl+k+f
vimgpu上新加的1T硬盘每次重启后手动挂载
fdisk -l #查看硬盘信息(/dev/sda)
sudo mount $硬盘目录 $挂在目录
grep -o "unix" aaa.txt | wc -l (-o means "only matching")